扫一扫
分享文章到微信
扫一扫
关注官方公众号
至顶头条
过程如下:
1.在类的声明里查看有无静态元素(static element, 我姑且这么叫吧),比如:
static int x = 1, { //block float sss = 333.3; String str = "hello"; } 或者 比如 static { //(static block), int x = 2; double y = 33.3; } |
2.查看此类是否为启动运行类,若为启动运行类,则执行main()方法里的语句对应语句
3.若不是启动运行类,则按代码的排版先后顺序继续执行非static element的变量赋值以及代码块.
4.最后执行构造方法,如果在被调用的构造方法里面有this关键字(注意,如果你考虑要调用其他构造方法,则应该把this写在最前面,不然会产生错误),则先调用相应构造方法主体,调用完之后再执行自己的剩下语句.
/** *//** * * @author livahu * Created on 2006年9月6日, 下午17:00 */ class FirstClass ...{ FirstClass(int i) ...{ System.out.println("FirstClass(" + i + ")"); } void useMethod(int k) ...{ System.out.println("useMethod(" + k + ")"); } } class SecondClass ...{ static FirstClass fc1 = new FirstClass(1); FirstClass fc3 = new FirstClass(3); static ...{ FirstClass fc2 = new FirstClass(2); } ...{ System.out.println("SecondClass's block, this block is not static block."); } SecondClass() ...{ System.out.println("SecondClass()"); } FirstClass fc4 = new FirstClass(4); } public class InitiationDemo ...{ SecondClass sc1 = new SecondClass(); ...{ System.out.println("Hello Java World!"); } public static void main(String[] args) ...{ System.out.println("Inside main()"); SecondClass.fc1.useMethod(100); InitiationDemo idObj = new InitiationDemo(); } static SecondClass sc2 = new SecondClass(); } |
运行结果:
FirstClass(1) FirstClass(2) FirstClass(3) SecondClass's block, this block is not static block. FirstClass(4) SecondClass() Inside main() useMethod(100) FirstClass(3) SecondClass's block, this block is not static block. FirstClass(4) SecondClass() Hello Java World! |
如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。
现场直击|2021世界人工智能大会
直击5G创新地带,就在2021MWC上海
5G已至 转型当时——服务提供商如何把握转型的绝佳时机
寻找自己的Flag
华为开发者大会2020(Cloud)- 科技行者