CAD夢想畫圖中如何進行尺寸標註
阿新 • • 發佈:2021-07-20
1,新建Application類,作為程式的入口
package demo05; //繼承 public class Application { public static void main(String[] args) { Student s1 = new Student(); s1.say(); //說了一句話!! // System.out.println(s1.money);//1000000000 加了私有 修飾後,這個語句報錯 System.out.println("s1.getMoney():"+s1.getMoney()); //s1.getMoney():1000000000 } }
2,新建Person類
package demo05; /* 繼承 */ public class Person { public void say(){ System.out.println("說了一句話!!"); } public int getMoney() { return money; } public void setMoney(int money) { this.money = money; } private int money=10_0000_0000; /* public 公共的 private 私有的 default 預設的 protected 受保護的 */ }
3,新建Student類
package demo05;
public class Student extends Person {
}
4,新建Teacher類
package demo05;
public class Teacher extends Person{
}