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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 大牛1 中级黑马   /  2016-5-28 20:07  /  422 人查看  /  3 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

  1. /*
  2.         写程序的执行结果。
  3.        
  4.         林青霞都60了,我很伤心
  5.         我是main方法
  6.         Student 静态代码块
  7.         Student 构造代码块
  8.         Student 构造方法
  9.         Student 构造代码块
  10.         Student 构造方法
  11. */
  12. class Student {
  13.         static {
  14.                 System.out.println("Student 静态代码块");
  15.         }
  16.        
  17.         {
  18.                 System.out.println("Student 构造代码块");
  19.         }
  20.        
  21.         public Student() {
  22.                 System.out.println("Student 构造方法");
  23.         }
  24. }

  25. class StudentDemo {
  26.         static {
  27.                 System.out.println("林青霞都60了,我很伤心");
  28.         }
  29.        
  30.         public static void main(String[] args) {
  31.                 System.out.println("我是main方法");
  32.                
  33.                 Student s1 = new Student();
  34.                 Student s2 = new Student();
  35.         }
  36. }
  37. 运行结果:
  38. 林青霞都60了,我很伤心
  39. 我是main方法
  40. Student 静态代码块
  41. Student 构造代码块
  42. Student 构造方法
  43. Student 构造代码块
  44. Student 构造方法
复制代码

3 个回复

倒序浏览
程序做的好!!!!!!!
回复 使用道具 举报
嗯  了解运行流程就好了。
回复 使用道具 举报
顶一个!
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马