Day_01_简单类的继承

父类car:车的奔跑速度,类型,颜色

子类Kache:复写父类中的三个方法

子类Moto:复写父类中的三个方法

测试类Test1:分别输出车的速度,类型,颜色

实现源代码:

//父类

package Acm.day01;


public class Car {

public void Run(){
System.out.println("极速");
}

public void Style(){
System.out.println("越野");
}

public void Color(){
System.out.println("白色");
}
}

//Kache类

package Acm.day01;


public class Kache extends Car {


@Override
public void Run() {
// TODO Auto-generated method stub
//super.Run();
System.out.println("高速");
}


@Override
public void Style() {
// TODO Auto-generated method stub
//super.Style();
System.out.println("这是一辆卡车");
}


@Override
public void Color() {
// TODO Auto-generated method stub
//super.Color();
System.out.println("红色");
}


public Kache() {
super();
// TODO Auto-generated constructor stub
}


}


//Moto类

package Acm.day01;


public class Moto extends Car {

@Override
public void Run() {
// TODO Auto-generated method stub
super.Run();
}


@Override
public void Style() {
// TODO Auto-generated method stub
super.Style();
}


@Override
public void Color() {
// TODO Auto-generated method stub
super.Color();
}


public Moto() {
// TODO Auto-generated constructor stub
}


}


//测试类

package Acm.day01;


public class Test1 {
public static void main(String[] args){

Kache kache = new Kache();
System.out.print("车的类型是:");
kache.Style();
System.out.print("车的奔跑速度是:");
kache.Run();
System.out.print("车的颜色是:");
kache.Color();

System.out.println();


Moto moto = new Moto();
System.out.print("车的类型是:");
moto.Style();
System.out.print("车的奔跑速度是:");
moto.Run();
System.out.print("车的颜色是:");
moto.Color();
}
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值