Hi I\'m having problem with initialization in java, following code give me compile error called : expected instanceInt = 100; but already I have declared it. If these thing
You need to do :
int instanceInt = 100;
If it was static you could initialize in a static block.
static