![]() |
|
#11
| ||||||||||||
| ||||||||||||
| right
__________________
done all that put it j creator and compiled it test works fine displays 4 but test 2 cannot find the int1 variable something is going wrong with the extension ? My System: Cewy's wonder macine
|
|
#12
| |||
| |||
| w00000000t it worked !!!!!!!! ill look over it again and tell you what the problem was |
|
#13
| |||
| |||
| i think it is either 2 things the static int i didn't do that or because i put the public static void main(String[] args){ before assigning a value to the variable also just to refresh my memory what is a static variable, saves me breaking out my big book |
|
#14
| |||
| |||
| (a) order of statements should not matter (b) a static variable is common to all class instances. You cannot use anything other than static vars in your main cos it is static. Otherwise you can do: package com.google.stuff; public class Test{ int int1 = 2, int2 = 2; public static void main(String[] args){ Test test=new Test(); System.out.println(test.int1 + test.int2); } } package com.google.stuff; public class Test2 extends Test{ int int2 = 3; public static void main(String[] args){ Test2 test=new Test2(); System.out.println(test.int1 + test.int2); } }
__________________ I think I am a signature, therefore I exist! I believe a higher being has me as a signature... |
|
#15
| |||
| |||
| ah right cheers :D |
|
#16
| |||
| |||
| Oh, and Java Creator has been replaced by Netbeans hasn't it?
__________________ I think I am a signature, therefore I exist! I believe a higher being has me as a signature... |
|
#17
| |||
| |||
| im not sure there a few ide's i used net beans but i am using jcreator as the book im using uses that but i may switch over depending i cant remember does netbeans have an interface editor |
|
#18
| |||||||||||||
| |||||||||||||
| Quote:
![]() CG
__________________
__________________
"Dream as if you'll live forever, Live as if you'll die today" My System: Puter
|
|
#19
| ||||||||||||
| ||||||||||||
| and you say i spam alot
__________________
My System: #
|
|
#20
| |||
| |||
| Who says you spam a lot?
__________________ "Dream as if you'll live forever, Live as if you'll die today" |