WP Cumulus Flash tag cloud by Roy Tanck and Luke Morton requires Flash Player 9 or better.
Ich habe soeben auf WordPress 3.0 aktualisiert – sieht soweit ganz OK aus.
Was macht folgender Code?
public class test {
public static void main(String[] args) {
String a = "hallo1";
String b = "hallo1";
String c = "hal" + "lo1";
int i = 1;
String d = "hallo" + i;
System.out.println((a == b) + " " + a.equals(b));
System.out.println((a == c) + " " + a.equals(c));
System.out.println((a == d) + " " + a.equals(d));
}
}
Mehr dazu, Dekompilieren, Überlegungen zu final int-Werten, etc. bei Stefan:
http://www.cosy.sbg.ac.at/~shuber/sphpblog/index.php?entry=entry100610-135110