java 基础 系列(二)

1.对于java语言,理解其代码执行顺序对于自己的程序性能等都是非常必要的,下面就切入正题介绍其执行顺序:

 

①:父类静态代码块->子类静态代码块(只执行一次);

②:父类成员变量的初始化或普通代码块->父类构造函数;

③:子类成员变量的初始化或普通代码块->子类构造函数。

 

示例代码:

 

package demo;

 

class Father {

//父类静态变量声明

private static int x=5;

protected static int y = 6;

//父类静态代码块

static{

System.out.println("y="+y);

System.out.println("x="+x);

System.out.println("class of Father..");

}

//父类普通代码块

{

System.out.println("To be or not to be..");

}

//父类构造器

public Father(){

int a=10;

int b=15;

System.out.println("a="+a+";b="+b+";str="+str);

}

//父类成员变量声明初始化

public String str="yeah";

}

 

public class Son extends Father{

//子类静态变量声明

public static String s="hello!";

//子类静态代码块

static{

System.out.println("s="+s);

System.out.println("class of Son..");

}

 

public static void main(String[] args) {

Son son = new Son();

son.introduce();

System.out.println("%%%%:"+Son.y);

System.out.println("====================================");

Son son2 = new Son();

}

//子类方法

public void introduce(){

System.out.println("how are you?");

}

}

 

 

打印信息:

 

y=6

x=5

class of Father..

s=hello!

class of Son..

To be or not to be..

a=10;b=15;str=yeah

how are you?

%%%%:6

====================================

To be or not to be..

a=10;b=15;str=yeah

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值