如何在Java中將超類變數轉換為子類型別


繼承 是兩個類之間的一種關係,其中一個類繼承另一個類的屬性。這種關係可以使用 extends 關鍵字定義為 -

public class A extends B{

}

繼承屬性的類稱為子類或子類,而其屬性被繼承的類稱為超類或父類。

在繼承中,超類成員的副本會在子類物件中建立。因此,使用子類物件,您可以訪問這兩個類的成員。

將超類引用變數轉換為子類型別

您可以嘗試透過簡單地使用強制轉換運算子將超類變數轉換為子類型別。但是,首先您需要使用子類物件建立超類引用,然後使用強制轉換運算子將此(超)引用型別轉換為子類型別。

示例

線上演示

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

更新於: 2021年2月8日

9K+ 瀏覽量

啟動你的 職業生涯

透過完成課程獲得認證

開始
廣告

© . All rights reserved.