標題:
繼承 (二)
[打印本頁]
作者:
tonyh
時間:
2015-4-11 15:24
標題:
繼承 (二)
本帖最後由 tonyh 於 2015-4-15 14:56 編輯
[attach]1208[/attach]
範例程式碼中, 第40~45行與54~59行, 為子類別中新添加的特性.
public class ch67
{
public static void main(String args[])
{
Dog d1=new Dog("憨憨",2,1.28);
d1.showProfile();
d1.makeSound(2);
Dog d2=new Dog("球球",1,1.35);
d2.showProfile();
d2.makeSound(3);
Cat c1=new Cat("咪咪",3,0.95);
c1.showProfile();
c1.makeSound(5);
}
}
class Animal
{
String name;
int age;
double w;
Animal(String name, int age, double w)
{
this.name=name;
this.age=age;
this.w=w;
}
void showProfile()
{
System.out.println(name+"今年"+age+"歲,體重"+w+"公斤.");
}
}
class Dog extends Animal
{
Dog(String name, int age, double w)
{
super(name, age, w);
}
void makeSound(int x)
{
for(int i=0; i<x; i++)
System.out.print("汪~");
System.out.println();
}
}
class Cat extends Animal
{
Cat(String name, int age, double w)
{
super(name, age, w);
}
void makeSound(int x)
{
for(int i=0; i<x; i++)
System.out.print("喵~");
System.out.println();
}
}
複製代碼
作者:
許逸群
時間:
2015-4-18 14:16
public class ch67
{
public static void main(String args[])
{
Dog d1=new Dog("憨憨",2,1.28);
d1.showProfile();
d1.makeSound(2);
Dog d2=new Dog("球球",1,1.35);
d2.showProfile();
d2.makeSound(3);
Cat c1=new Cat("咪咪",3,0.95);
c1.showProfile();
c1.makeSound(5);
}
}
class Animal
{
String name;
int age;
double w;
Animal(String name, int age, double w)
{
this.name=name;
this.age=age;
this.w=w;
}
void showProfile()
{
System.out.println(name+"今年"+age+"歲,體重"+w+"公斤.");
}
}
class Dog extends Animal
{
Dog(String name, int age, double w)
{
super(name, age, w);
}
void makeSound(int x)
{
for(int i=0; i<x; i++)
System.out.print("汪~");
System.out.println();
}
}
class Cat extends Animal
{
Cat(String name, int age, double w)
{
super(name, age, w);
}
void makeSound(int x)
{
for(int i=0; i<x; i++)
System.out.print("喵~");
System.out.println();
}
}
複製代碼
作者:
林以諾
時間:
2015-4-18 14:28
public class ch67
{
public static void main(String args[])
{
Dog d1=new Dog("憨憨",2,1.28);
d1.showProfile();
d1.makeSound(2);
Dog d2=new Dog("球球",1,1.35);
d2.showProfile();
d2.makeSound(3);
Cat c1=new Cat("咪咪",3,0.95);
c1.showProfile();
c1.makeSound(5);
}
}
class Animal
{
String name;
int age;
double w;
Animal(String name, int age, double w)
{
this.name=name;
this.age=age;
this.w=w;
}
void showProfile()
{
System.out.println(name+"今年"+age+"歲,體重"+w+"公斤.");
}
}
class Dog extends Animal
{
Dog(String name, int age, double w)
{
super(name, age, w);
}
void makeSound(int x)
{
for(int i=0; i<x; i++)
System.out.print("汪~");
System.out.println();
}
}
class Cat extends Animal
{
Cat(String name, int age, double w)
{
super(name, age, w);
}
void makeSound(int x)
{
for(int i=0; i<x; i++)
System.out.print("喵~");
System.out.println();
}
}
複製代碼
作者:
張瀚仁
時間:
2015-4-18 14:29
public class ch67
{
public static void main(String args[])
{
Dog d1=new Dog("憨憨",2,1.28);
d1.showProfile();
d1.makeSound(2);
Dog d2=new Dog("球球",1,1.35);
d2.showProfile();
d2.makeSound(3);
Cat c1=new Cat("咪咪",3,0.95);
c1.showProfile();
c1.makeSound(5);
}
}
class Animal
{
String name;
int age;
double w;
Animal(String name, int age, double w)
{
this.name=name;
this.age=age;
this.w=w;
}
void showProfile()
{
System.out.println(name+"今年"+age+"歲,體重"+w+"公斤.");
}
}
class Dog extends Animal
{
Dog(String name, int age, double w)
{
super(name, age, w);
}
void makeSound(int x)
{
for(int i=0; i<x; i++)
System.out.print("汪~");
System.out.println();
}
}
class Cat extends Animal
{
Cat(String name, int age, double w)
{
super(name, age, w);
}
void makeSound(int x)
{
for(int i=0; i<x; i++)
System.out.print("喵~");
System.out.println();
}
}
複製代碼
作者:
劉泳鱔
時間:
2015-6-16 17:01
public class Ch67
{
public static void main(String[] args)
{
Dog d1=new Dog("憨憨",2,1.28);
d1.showprofile();
d1.makeSound(2);
Dog d2=new Dog("球球",1,1.35);
d2.showprofile();
d2.makeSound(3);
Cat c1=new Cat("喵喵",3,0.95);
c1.showprofile();
c1.makeSound(5);
}
}
class Animal
{
String name;
int age;
double w;
Animal(String name, int age, int w)
{
this.name=name;
this.age=age;
this.w=w;
}
void showprofile()
{
System.out.println(name+"今年"+age+"歲,體重"+w+"公斤");
}
}
class Dog extends Animal
{
Dog(String name, int age, int w)
{
super(name,age,w);
}
void makeSound(int x)
{
for(int i=0; i<x; i++)
System.out.println("汪~~");
System.out.println();
}
}
class Cat extends Animal
{
Cat(String name, int age, int w)
{
super(name,age,w);
}
void makeSound(int x)
{
for(int i=0; i<x; i++)
System.out.println("喵~~");
System.out.println();
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2