Skip to main content
1.Source code generation
2.Compilation
3.Class loading
a)All static data members are created and initialized to default value
b) All static blocks are executed sequence
4.Main method starts execution.
5.During object creation time all non static methods data members are created and initialized to default value.
6.All non static blocks are executed sequence
7.Constructor starts execution
8.Main method resumes the execution.
9.Main method finish the execution.
Comments
Post a Comment