While running this code it shows Stackoverflow error. What is it I am doing wrong, why does the code compile?
public class Foo {
int a = 5;
Foo f = new Foo();
void go() {
System.out.println(f.a);
}
public static void main(String[] args) {
Foo f2 = new Foo();
f2.go();
}
}
You can call
gomethod with an instance only. so before call to go started, c’tor has run for classFooNow, C’tor is designed to initialize all instance members.
So one by one it initializes:
before
=operator works, C’tor is called and thus the chain continues.If you see the stacktrace, it’ll have
initwritten in it. so it’s failing during initialization only.