标签:
1 package com.Demo; 2 public class Demo03 { 3 String name; 4 int age; 5 //构造函数初始化 优先级:3 6 public Demo03(String name,int age) { 7 this.name=name; 8 this.age=age; 9 System.out.println("构造函数"); 10 } 11 12 //非静态初始化 优先级:2 13 { 14 System.out.println("非静态初始化"); 15 } 16 //静态初始化 优先级:1 17 static{ 18 System.out.println("静态初始化"); 19 } 20 21 22 public static void main(String[] args) { 23 Demo03 demo=new Demo03("zhangs",1); 24 } 25 }
标签:
原文地址:http://www.cnblogs.com/JamKong/p/4447082.html