3
3952646
Gast
Hallo!
Folgendes Problem:
Ich habe eine Klasse "Node" mit den Instanzvariablen:
"payoff" vom Typ double und
"nextNode" vom Typ Node
Wieso spuckt folgender Code nicht 3 aus sondern 0??
Danke!!
Folgendes Problem:
Ich habe eine Klasse "Node" mit den Instanzvariablen:
"payoff" vom Typ double und
"nextNode" vom Typ Node
Wieso spuckt folgender Code nicht 3 aus sondern 0??
Java:
Node test1=new Node();
Node test2=new Node();
Node test3=new Node();
test1.nextNode=test2;
test2.nextNode=test3;
test1.payoff=test1.nextNode.payoff;
test2.payoff=test2.nextNode.payoff;
test3.payoff=3;
System.out.println(test1.payoff);
Danke!!