码迷,mamicode.com
首页 > 编程语言 > 详细

java代码块 学习

时间:2018-06-21 18:57:42      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:new   void   main   静态   pre   代码块   public   java   oid   

class Student { static { System.out.println("Student 静态代码块"); } { System.out.println("Student 构造代码块"); } public Student() { System.out.println("Student 构造方法"); } } class Demo2_Student { static { System.out.println("Demo2_Student静态代码块"); } public static void main(String[] args) { System.out.println("我是main方法"); Student s1 = new Student(); Student s2 = new Student(); } }

java代码块 学习

标签:new   void   main   静态   pre   代码块   public   java   oid   

原文地址:http://blog.51cto.com/357712148/2131465

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!