Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Java

วิธีแปลงตัวแปร super class เป็นประเภท sub class ใน Java


มรดก เป็นความสัมพันธ์ระหว่างสองคลาสโดยที่คลาสหนึ่งสืบทอดคุณสมบัติของคลาสอื่น ความสัมพันธ์นี้สามารถกำหนดได้โดยใช้คีย์เวิร์ดขยายเป็น −

public class A extends B{

}

คลาสที่สืบทอดคุณสมบัติเรียกว่าคลาสย่อยหรือคลาสย่อยและคลาสที่มีคุณสมบัติที่สืบทอดมาคือ super class หรือ parent class

ในการสืบทอด สำเนาของสมาชิก super class จะถูกสร้างขึ้นในวัตถุคลาสย่อย ดังนั้น การใช้อ็อบเจ็กต์คลาสย่อย คุณสามารถเข้าถึงสมาชิกของทั้งสองคลาสได้

การแปลงตัวแปรอ้างอิง super class เป็นประเภท sub class

คุณสามารถลองแปลงตัวแปร super class เป็นประเภท sub class ได้โดยใช้ตัวดำเนินการ cast แต่ก่อนอื่น คุณต้องสร้างการอ้างอิง super class โดยใช้วัตถุ sub class จากนั้นแปลงประเภทการอ้างอิง (super) เป็นประเภทย่อยโดยใช้ตัวดำเนินการ cast

ตัวอย่าง

class Person{
   public String name;
   public int age;
   public Person(String name, int age){
      this.name = name;
      this.age = age;
   }
   public void displayPerson() {
      System.out.println("Data of the Person class: ");
      System.out.println("Name: "+this.name);
      System.out.println("Age: "+this.age);
   }
}
public class Sample extends Person {
   public String branch;
   public int Student_id;

   public Sample(String name, int age, String branch, int Student_id){
   super(name, age);
      this.branch = branch;
      this.Student_id = Student_id;
   }
   public void displayStudent() {
      System.out.println("Data of the Student class: ");
      System.out.println("Name: "+super.name);
      System.out.println("Age: "+super.age);
      System.out.println("Branch: "+this.branch);
      System.out.println("Student ID: "+this.Student_id);
   }
   public static void main(String[] args) {        
      Person person = new Sample("Krishna", 20, "IT", 1256);      
      //Converting super class variable to sub class type
      Sample obj = (Sample) person;      
      obj.displayPerson();
      obj.displayStudent();
   }
}

ผลลัพธ์

Data of the Person class:
Name: Krishna
Age: 20
Data of the Student class:
Name: Krishna
Age: 20
Branch: IT
Student ID: 1256

ตัวอย่าง

class Super{
   public Super(){
      System.out.println("Constructor of the super class");
   }
   public void superMethod() {
      System.out.println("Method of the super class ");
   }
}
public class Test extends Super {
   public Test(){
      System.out.println("Constructor of the sub class");
   }
   public void subMethod() {
      System.out.println("Method of the sub class ");
   }
   public static void main(String[] args) {        
      Super sup = new Test();      
      //Converting super class variable to sub class type
      Test obj = (Test) sup;      
      obj.superMethod();
      obj.subMethod();
   }
}

ผลลัพธ์

Constructor of the super class
Constructor of the sub class
Method of the super class
Method of the sub class