A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

代码:
public        class T  implements Cloneable{
                  public static int k = 0;
                  public static T t1 = new T("t1");
                  public static T t2 = new T("t2");
                  public static int i = print("i");
                  public static int n = 99;
                  
                  public int j = print("j");
                  
                  {
                      print("构造快");
                  }
                  
                  static {
                      print("静态块");
                  }
                  
                  public T(String str) {
                      System.out.println((++k) + ":" + str + "    i=" + i + "  n=" + n);
                      ++n; ++ i;
                  }
                  
                  public static int print(String str){
                      System.out.println((++k) +":" + str + "   i=" + i + "   n=" + n);
                      ++n;
                      return ++ i;
                  }
                  
                  public static void main(String[] args){
                      T t = new T("init");
                  }
                }



结果:
1:j   i=0   n=0
2:构造快   i=1   n=1
3:t1    i=2  n=2
4:j   i=3   n=3
5:构造快   i=4   n=4
6:t2    i=5  n=5
7:i   i=6   n=6
8:静态块   i=7   n=99
9:j   i=8   n=100
10:构造快   i=9   n=101
11:init    i=10  n=102

3 个回复

正序浏览
好难的样子,, 和接口什么关系???
回复 使用道具 举报
657324 来自手机 初级黑马 2016-7-16 00:47:55
藤椅
好惆怅啊
回复 使用道具 举报
http://www.cnblogs.com/guodefu909/p/4991612.html
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马