Java编译时类型和运行时类型的区别
2021-05-01 07:29
标签:种类 变量 运行时 编译 java style out span 引用类型 Java有两种引用类型,分别是编译时类型和运行时类型。编译型类型在变量声明时决定,运行时类型取决于变量具体指向的类型,如果两种类型不一致,就会出现多态。 规则:对象调用编译时类型的属性和运行时类型的方法。 举例: Java编译时类型和运行时类型的区别 标签:种类 变量 运行时 编译 java style out span 引用类型 原文地址:https://www.cnblogs.com/viewts/p/13219364.htmlclass Person {
public String name;
public Person() {
name = "Person";
}
public String getName() {
return name;
}
}
class Student extends Person {
public String name;
public Student() {
name = "Student";
}
public String getName() {
return name;
}
}
public class Hello {
public static void main(String[] args) {
Person person = new Student();
System.out.println(person.name); // Person
System.out.println(person.getName()); // Student
}
}
上一篇:快速排序
文章标题:Java编译时类型和运行时类型的区别
文章链接:http://soscw.com/index.php/essay/80769.html