0
How does the java interpreter calls a method before it's defined?
In the last question in Method chapter, It called method "DoSomething " before that method is defined.
2 Respostas
+ 1
The process the code runs through the Jvm isn't the same as we read it. Its nonlinear in how it processes your code.
0
thank you for replying. that explains it.