JAVA继承
本文最后更新于 3228 天前,其中的信息可能已经有所发展或是发生改变。
多重继承:
练习2
   已知(1)有Father、Son、Garndson类,(2)Father有变量money,weight ,(3)Son有变量 hand并继承了Father(4)Grandson 本身有变量 foot并继承了Son

class Father {//父亲
	private  double money;
	private int weight;
	public double getMoney(){
		return money;
	}
	public void setMoney(double newMoney){
		money=newMoney;
	}
	public int getWeight(){
		return weight;
	}
	public void setWeight(int newWeight){
		 weight=newWeight;
	}
}
class Son extends Father{//儿子
	private String hand;

	public String getHand(){
		return hand;
	}
	public void setHand(String newHand){
		hand=newHand;
	}
}
class Grandson extends Son{//孙子
	private String foot;
	public String getFoot(){
		return foot;
	}
	public void setFoot(String newFoot){
		foot=newFoot;
	}
}
public class Test {//测试
	public static void main(String[] args) {
		Son son=new Son();
        Grandson grandson=new Grandson();
        son.setWeight(60);
        son.setHand("一双大手");
        grandson.setWeight(30);
        grandson.setHand("一双小手");
        grandson.setFoot("一双小脚");
        System.out.println("儿子重量:"+son.getWeight());
        System.out.println("孙子重量:"+grandson.getWeight());
        System.out.println("儿子的手:"+son.getHand());
        System.out.println("孙子的手:"+grandson.getHand());
        System.out.println("孙子的脚:"+grandson.getFoot());
	}
}

评论

  1. 2026 年前
    -0001-11-30 0:00:00

    每天记录,不错,加油。

  2. 2026 年前
    -0001-11-30 0:00:00

    @themebetter:你的模板也不错!

发送评论 编辑评论


				
|´・ω・)ノ
ヾ(≧∇≦*)ゝ
(☆ω☆)
(╯‵□′)╯︵┴─┴
 ̄﹃ ̄
(/ω\)
∠( ᐛ 」∠)_
(๑•̀ㅁ•́ฅ)
→_→
୧(๑•̀⌄•́๑)૭
٩(ˊᗜˋ*)و
(ノ°ο°)ノ
(´இ皿இ`)
⌇●﹏●⌇
(ฅ´ω`ฅ)
(╯°A°)╯︵○○○
φ( ̄∇ ̄o)
ヾ(´・ ・`。)ノ"
( ง ᵒ̌皿ᵒ̌)ง⁼³₌₃
(ó﹏ò。)
Σ(っ °Д °;)っ
( ,,´・ω・)ノ"(´っω・`。)
╮(╯▽╰)╭
o(*////▽////*)q
>﹏<
( ๑´•ω•) "(ㆆᴗㆆ)
😂
😀
😅
😊
🙂
🙃
😌
😍
😘
😜
😝
😏
😒
🙄
😳
😡
😔
😫
😱
😭
💩
👻
🙌
🖕
👍
👫
👬
👭
🌚
🌝
🙈
💊
😶
🙏
🍦
🍉
😣
Source: github.com/k4yt3x/flowerhd
颜文字
Emoji
小恐龙
花!
上一篇
下一篇