標題:
物件導向基礎概念 (三)
[打印本頁]
作者:
鄭繼威
時間:
2023-8-23 06:04
標題:
物件導向基礎概念 (三)
本帖最後由 鄭繼威 於 2023-8-23 20:36 編輯
定義一
Dog類別
,包含
建構子
及
兩個方法
。
showProfile()
用來顯示基本資料,
makeSound(int n)
用來印出
n次
"汪~"。
public class Ch54 {
public static void main(String[] args) {
Dog d1=new Dog("憨憨",2,1.3f,"紅棕");
Dog d2=new Dog("球球",1,1.2f,"白");
d1.showProfile();
d1.makeSound(2);
d2.showProfile();
d2.makeSound(3);
}
}
class Dog{
String name,color;
int age;
float w;
Dog(String n,int a,float w,String c)
{
this.name=n;
this.age=a;
this.w=w;
this.color=c;
}
void showProfile()
{
System.out.println(this.name+"今年"+this.age+"歲,體重"+this.w+"公斤,毛色為"+this.color+"色。");
}
void makeSound(int n)
{
for(int i=1; i<=n; i++)
System.out.print("汪~");
System.out.println();
}
}
複製代碼
作者:
李彣
時間:
2023-8-23 21:11
本帖最後由 李彣 於 2023-8-23 21:15 編輯
public class C
{
public static void main(String[] args)
{
Dog d1=new Dog("dog1",2,1.2f,"黑");
Dog d2=new Dog("dog2",1,1.1f,"白");
d1.showProfile();
d1.makeSound(1);
d2.showProfile();
d2.makeSound(2);
}
}
class Dog
{
String name,color;
int age;
float w;
Dog(String n,int a,float w,String c)
{
this.name=n;
this.age=a;
this.w=w;
this.color=c;
}
void showProfile()
{
System.out.println(this.name+"今年"+this.age+"歲,體重"+this.w+"公斤,毛色為"+this.color+"色。");
}
void makeSound(int n)
{
for(int i=1; i<=n; i++)
{
System.out.print("汪~");
System.out.println();
}
}
}
複製代碼
作者:
曾善勤
時間:
2023-8-23 21:13
public class Ch01 {
public static void main(String[] args) {
Dog a=new Dog("憨憨",2,5.6f,"紅棕");
Dog b=new Dog("球球",1,10.6f,"白");
a.showProfile();
a.makeSound(2);
b.showProfile();
b.makeSound(3);
}
}
class Dog{
String name,color;
int age;
float kg;
Dog(String n,int a,float w,String c)
{
this.name=n;
this.age=a;
this.kg=kg;
this.color=c;
}
void showProfile()
{
System.out.println(this.name+"今年"+this.age+"歲,體重"+this.kg+"公斤,毛色為"+this.color+"色。");
}
void makeSound(int x)
{
for(int i=1; i<=x; i++)
System.out.print("汪~");
System.out.println();
}
}
複製代碼
作者:
林劭澧
時間:
2023-8-23 21:16
public class CH01
{
public static void main(String[] args)
{
Dog d1=new Dog("Gay",2,1.3f,"紅棕");
Dog d2=new Dog("智障",1,1.2f,"白");
d1.showProfile();
d1.makeSound(2);
d2.showProfile();
d2.makeSound(3);
}
}
class Dog
{
String name,color;
int age;
float w;
Dog(String n,int a,float w,String c)
{
this.name=n;
this.age=a;
this.w=w;
this.color=c;
}
void showProfile()
{
System.out.println(this.name+"今年"+this.age+"歲,體重"+this.w+"公斤,毛色為"+this.color+"色。");
}
void makeSound(int n)
{
for(int i=1; i<=n; i++)
System.out.print("汪~");
System.out.println();
}
}
複製代碼
作者:
黃裕恩
時間:
2023-8-23 21:17
package test;
public class Test {
public static void main(String[] args) {
Dog d1=new Dog("憨憨",2,1.3f,"紅棕");
Dog d2=new Dog("球球",1,1.2f,"白");
d1.showProfile();
d1.makeSound(2);
d2.showProfile();
d2.makeSound(3);
}
}
class Dog{
String name,color;
int age;
float w;
Dog(String n,int a,float w,String c)
{
this.name=n;
this.age=a;
this.w=w;
this.color=c;
}
void showProfile()
{
System.out.println(this.name+"今年"+this.age+"歲,體重"+this.w+"公斤,毛色為"+this.color+"色。");
}
void makeSound(int n)
{
for(int i=1; i<=n; i++)
System.out.print("汪~");
System.out.println();
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2