標題:
繼承 (一)
[打印本頁]
作者:
tonyh
時間:
2019-9-2 18:35
標題:
繼承 (一)
所謂繼承(Inheritance)是一種類別之間的關係,可以利用現有類別衍生出新的類別,新的類別可以與現有類別分享共同的屬性、方法與資料結構等,在物件導向程式設計中利用繼承,可以達到程式碼重複使用的優點。
繼承功能可以在建立新類別時,修改、添加或繼承現有類別的定義。建立一種類別後,如果須要再建立許多大同小異的類別,就可以利用繼承特性,分別繼承這個現有的類別,並且將差異部分加以修改或添加。
被繼承的類別稱為父類別或基礎類別(Base Class),而經由繼承產生的類別,則稱為子類別或衍生類別(Derived Class),子類別不僅可以繼承父類別的特性(屬性與方法),也可以修改或添加特性。
C++支援多重繼承(一個類別擁有多個父類別),但Java不直接支援多重繼承,類似的機制則必須透過介面來完成。
歸納上述,關於繼承的四大特性如下:
1.子類別可以繼承父類別的特性。
2.子類別可以添加新的特性。
3.子類別可以修改並重新定義自父類別繼承下來的特性。
4.子類別繼承父類別時,不需要複製父類別的程式碼,造成程式碼重複。
public class Ch68 {
public static void main(String[] args) {
Dog d1=new Dog("憨憨",2,1.28);
Dog d2=new Dog("球球",1,1.35);
Cat c1=new Cat("咪咪",3,0.95);
d1.showProfile();
d2.showProfile();
c1.showProfile();
}
}
class Animal{
String name;
int age;
double weight;
Animal(String n, int a, double w)
{
name=n;
age=a;
weight=w;
}
void showProfile()
{
System.out.println(name+"今年"+age+"歲,體重"+weight+"公斤.");
}
}
class Dog extends Animal
{
Dog(String n, int a, double w)
{
super(n,a,w);//super():從子類別呼叫其父類別的建構式。
}
}
class Cat extends Animal
{
Cat(String n, int a, double w)
{
super(n,a,w);
}
}
複製代碼
作者:
趙一鳴
時間:
2019-9-2 20:17
public class Ch68
{
public static void main(String[] args)
{
Dog d1 = new Dog("憨憨",2,1.28);
Dog d2 = new Dog("球球",1,1.35);
Cat c1= new Cat("咪咪",3,0.95);
d1.showProfile();
d2.showProfile();
c1.showProfile();
}
}
class Animal
{
String name;
int age;
double w;
Animal(String n,int a,double w)
{
name = n;
age = a;
this.w = w;
}
void showProfile()
{
System.out.println(name+"今年"+age+"歲,體重"+w+"公斤.");
}
}
class Dog extends Animal
{
Dog(String n,int a,double w)
{
super(n,a,w);
}
}
class Cat extends Animal
{
Cat(String n,int a,double w)
{
super(n,a,w);
}
}
複製代碼
作者:
黃宇綸
時間:
2019-9-2 20:19
本帖最後由 黃宇綸 於 2019-9-3 22:53 編輯
public class Ch01 {
public static void main(String[] args) {
Dog d1=new Dog("憨憨",2,1.28);
Dog d2=new Dog("球球",1,1.35);
Cat c1=new Cat("咪咪",3,0.95);
d1.showProfile();
d2.showProfile();
c1.showProfile();
}
}
class Animal
{
String name;
int age;
double w;
Animal(String n,int a,double w)
{
name=n;
age=a;
this.w=w;
}
void showProfile()
{
System.out.println(name+"今年"+age+"歲,體重"+w+"公斤");
}
}
class Dog extends Animal
{
Dog(String n,int a,double w)
{
super(n,a,w);
}
}
class Cat extends Animal
{
Cat(String n,int a,double w)
{
super(n,a,w);
}
}
複製代碼
作者:
洪翊展
時間:
2019-9-2 20:21
本帖最後由 洪翊展 於 2019-9-2 20:37 編輯
public class Ch68 {
public static void main(String[] args) {
Dog d1=new Dog("憨憨",2,1.28);
Dog d2=new Dog("球球",1,1.35);
Cat c1=new Cat("咪咪",3,0.95);
d1.showProfile();
d2.showProfile();
c1.showProfile();
}
}
class An{
String name;
int age;
double wei;
An(String n,int a,double w)
{
name=n;
age=a;
wei=w;
}
void showProfile(){
System.out.println(name+"今年"+age+"歲,體重"+wei+"公斤");
}
}
class Dog extends An{
Dog(String n,int a,double w)
{
super(n,a,w);
}
}
class Cat extends An{
Cat(String n,int a,double w)
{
super(n,a,w);
}
}
複製代碼
作者:
洪翊庭
時間:
2019-9-2 20:22
public class Ch68 {
public static void main(String[] args) {
Dog d1=new Dog("憨憨",2,1.28);
Dog d2=new Dog("球球",1,1.35);
Cat c1=new Cat("咪咪",3,0.95);
d1.showProfile();
d2.showProfile();
c1.showProfile();
}
}
class Animal{
String name;
int age;
double weight;
Animal(String n, int a, double w)
{
name=n;
age=a;
weight=w;
}
void showProfile()
{
System.out.println(name+"今年"+age+"歲,體重"+weight+"公斤.");
}
}
class Dog extends Animal
{
Dog(String n, int a, double w)
{
super(n,a,w);
}
}
class Cat extends Animal
{
Cat(String n, int a, double w)
{
super(n,a,w);
}
}
複製代碼
作者:
黃宇瑄
時間:
2019-9-2 20:23
public class Ch01 {
public static void main(String[] args)
{
Dog d1=new Dog("憨憨",2,1.28);
Dog d2=new Dog("球球",1,1.35);
Cat c1=new Cat("咪咪",3,0.95);
d1.showProfile();
d2.showProfile();
c1.showProfile();
}
}
class Animal
{
String name;
int age;
double w;
Animal(String n,int a,double w)
{
name=n;
age=a;
this.w=w;
}
void showProfile()
{
System.out.println(name+"今年"+age+"歲,體重"+w+"公斤");
}
}
class Dog extends Animal
{
Dog(String n,int a,double w)
{
super(n,a,w);
}
}
class Cat extends Animal
{
Cat(String n,int a,double w)
{
super(n,a,w);
}
}
複製代碼
作者:
戴嘉禾
時間:
2019-9-2 20:24
public class Ch68 {
public static void main(String[] args) {
Dog d1=new Dog("憨憨",2,1.28);
Dog d2=new Dog("球球",1,1.35);
Cat c1=new Cat("咪咪",3,0.95);
d1.showProfile();
d2.showProfile();
c1.showProfile();
}
}
class Animal
{
String name;
int age;
double weight;
Animal(String n,int a,double w)
{
name=n;
age=a;
weight=w;
}
void showProfile()
{
System.out.println(name+"今年"+age+"歲,體重"+weight+"公斤.");
}
}
class Dog extends Animal{
Dog(String n,int a,double w){
super(n,a,w);
}
}
class Cat extends Animal{
Cat(String n,int a,double w){
super(n,a,w);
}
}
複製代碼
作者:
李沛昂
時間:
2019-9-2 20:32
public class Ch01 {
public static void main(String[] args) {
Dog d1=new Dog("憨憨",2,1.28);
Dog d2=new Dog("球球",1,1.35);
Cat c1=new Cat("咪咪",3,0.95);
d1.showProfile();
d2.showProfile();
c1.showProfile();
}
}
class Animal{
String name;
int age;
double w;
Animal(String n,int a,double w)
{
name=n;
age=a;
this.w=w;
}
void showProfile(){
System.out.println(name+"今年"+age+"歲,體重"+w+"公斤");
}
}
class Dog extends Animal{
Dog(String n,int a,double w)
{
super(n,a,w);
}
}
class Cat extends Animal{
Cat(String n,int a,double w)
{
super(n,a,w);
}
}
複製代碼
作者:
may
時間:
2019-9-12 19:40
public class Ch68 {
public static void main(String[] args) {
Dog d1=new Dog("憨憨",2,1.28); //利用Dog子類別,創建一個Dog物件,()內要有它和建構子參數對應的值。
Dog d2=new Dog("球球",1,1.35);
Cat c1=new Cat("咪咪",3,0.95);
d1.showProfile();
d2.showProfile();
c1.showProfile();
}
}
class Animal{ //自建類別
String name; //定義屬性
int age; //定義屬性
double weight; //定義屬性
Animal(String n, int a, double w) //定義建構子,建構子規範了新物件應有的屬性,透過建構子,快速的把物件初始化。
{
name=n; //把建構子的參數n指派給此類別所產生的物件,作為它的屬性。
age=a; //若建構子的參數名稱和物件定義的屬性名稱一定,則寫成 this.age=age; 以免編繹器分不清。
weight=w;
}
void showProfile() 定義物件有個方法,它能輸出一段訊息。
{
System.out.println(name+"今年"+age+"歲,體重"+weight+"公斤.");
}
}
class Dog extends Animal //定義Dog子類別,繼承自Animal類別
{
Dog(String n, int a, double w)
{
super(n,a,w); // 建構子不能繼承,所以調用Animal建構子使用,以節省程式碼
}
}
class Cat extends Animal //定義Cat子類別,繼承自Animal類別
{
Cat(String n, int a, double w) // 建構子不能繼承,所以調用Animal建構子使用,以節省程式碼
{
super(n,a,w);
}
}
複製代碼
作者:
鄭楀諺
時間:
2019-9-13 10:15
本帖最後由 鄭楀諺 於 2019-9-13 10:26 編輯
public class Morris {
public static void main(String[] args) {
Dog d1=new Dog("憨憨",2,1.28);
Dog d2=new Dog("球球",1,1.35);
Cat c1=new Cat("咪咪",3,0.95);
d1.showProfile();
d2.showProfile();
c1.showProfile();
}
}
class Animal {
String name;
int age;
double weight;
Animal(String n, int a, double w)
{
name = n;
age = a;
weight = w;
}
void showProfile(String name, int age, double weight)
{
System.out.println(name+"今年"+age+"歲,體重"+"公斤.");
}
}
class Dog extends Animal{
Dog(String n, int a, double w)
{
super(n, a, w);
}
}
class Cat extends Animal{
Cat(String n, int a, double w)
{
super(n, a, w);
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2