Would you like to react to this message? Create an account in a few clicks or log in to continue.

ö·ʹ лѭҷԴ鹡Ѻ Constructor Ѻ

Go down

ö·ʹ лѭҷԴ鹡Ѻ Constructor  Ѻ Empty ö·ʹ лѭҷԴ鹡Ѻ Constructor Ѻ

ตั้งหัวข้อ  Admin Mon May 19, 2008 7:46 pm

public class testExtend {

public static void main(String[] args) {
new child();
}

}

class parent{
parent(String para){
System.out.println("This is Parent :"+para);
}

// Constructor Ẻ仨ջѭ
parent(){
System.out.println("¡ super(); ¡Ѻ");
}


}



class child extends parent{

public child() {
//çѹ¡ super(); ը֧ Compile Error
System.out.println("This is Child");
}

}


แก้ไขล่าสุดโดย Admin เมื่อ Mon May 19, 2008 8:27 pm, ทั้งหมด 1 ครั้ง
Admin
Admin
Admin

จำนวนข้อความ : 112
Registration date : 18/05/2008

http://chawban.chocoforum.com

ขึ้นไปข้างบน Go down

ö·ʹ лѭҷԴ鹡Ѻ Constructor  Ѻ Empty Re: ö·ʹ лѭҷԴ鹡Ѻ Constructor Ѻ

ตั้งหัวข้อ  Admin Mon May 19, 2008 8:04 pm

class child extends parent{

public child() {
this("ҷ");
System.out.println("This is Child");
}

public child(String A) {
this();
System.out.println("This is Child have Parameter"+A);
}
}

Ẻ Compile error recursive constructor invocation
Admin
Admin
Admin

จำนวนข้อความ : 112
Registration date : 18/05/2008

http://chawban.chocoforum.com

ขึ้นไปข้างบน Go down

ö·ʹ лѭҷԴ鹡Ѻ Constructor  Ѻ Empty Re: ö·ʹ лѭҷԴ鹡Ѻ Constructor Ѻ

ตั้งหัวข้อ  Admin Mon May 19, 2008 8:22 pm

class child extends parent{

public child() {
// Ẻ ¡ 1 ҹ
super("ҡͺҹ");
this("ҷ");


System.out.println("This is Child");
}

public child(String A) {
//this();
super("ҡͺҹ");
System.out.println("This is Child have Parameter "+A);
}
}
Admin
Admin
Admin

จำนวนข้อความ : 112
Registration date : 18/05/2008

http://chawban.chocoforum.com

ขึ้นไปข้างบน Go down

ขึ้นไปข้างบน

- Similar topics

 
Permissions in this forum:
คุณไม่สามารถพิมพ์ตอบ