[转帖]Java 程序初始化过程详解_Tomcat, WebLogic及J2EE讨论区_Weblogic技术|Tuxedo技术|中间件技术|Oracle论坛|JAVA论坛|Linux/Unix技术|hadoop论坛_联动北方技术论坛  
网站首页 | 关于我们 | 服务中心 | 经验交流 | 公司荣誉 | 成功案例 | 合作伙伴 | 联系我们 |
联动北方-国内领先的云技术服务提供商
»  游客             当前位置:  论坛首页 »  自由讨论区 »  Tomcat, WebLogic及J2EE讨论区 »
总帖数
1
每页帖数
101/1页1
返回列表
0
发起投票  发起投票 发新帖子
查看: 3568 | 回复: 0   主题: [转帖]Java 程序初始化过程详解        下一篇 
jxxs_12
注册用户
等级:下士
经验:190
发帖:14
精华:0
注册:2013-1-15
状态:离线
发送短消息息给jxxs_12 加好友    发送短消息息给jxxs_12 发消息
发表于: IP:您无权察看 2013-1-15 16:14:56 | [全部帖] [楼主帖] 楼主

觉得Core Java在Java 初始化过程的总体顺序没有讲,只是说了构造器时的顺序,作者似乎认为路径很多,列出来比较混乱。我觉得还是要搞清楚它的过程比较好。所以现在结合我的学习经验写出具体过程:

  过程如下:

  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;
}


  如果有static element则首先执行其中语句,但注意static element只执行一次,在第二次创建类的对象的时候,就不会去执行static element的语句.

  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!




赞(0)    操作        顶端 
总帖数
1
每页帖数
101/1页1
返回列表
发新帖子
请输入验证码: 点击刷新验证码
您需要登录后才可以回帖 登录 | 注册
技术讨论