标签:
import java.util.Scanner;
public class Score {
public static void main(String[] args) {
System.out.println("请输入成绩");
Scanner sc = new Scanner(System.in);
String ss = sc.next(); //将数据以String类型的方式读入
if(isInt(ss)==false) {
System.exit(0);
}
else {
int score = Integer.valueOf(ss);
if(score<0||score>100) {
System.out.println("您输入的数据非法,请重新输入");
}
else if(score>=0&&score<60) {
System.out.println("不及格");
}
else if(score>=60&&score<70) {
System.out.println("及格");
}
else if(score>=70&&score<80) {
System.out.println("中等");
}
else if(score>=80&&score<90) {
System.out.println("良好");
}
else {
System.out.println("优秀");
}
sc.close();
}
}
public static boolean isInt(String ss) {
Integer it = null;
try {
it = Integer.valueOf(ss);
} catch (NumberFormatException e) {
System.out.println("您输入的数据不合法,请重新输入");
return false;
}
return true;
}
}
public class ParentChildTest {
public static void main(String[] args) {
Parent parent=new Parent();
parent.printValue();
Child child=new Child();
child.printValue();
parent=child;
parent.printValue();
parent.myValue++;
parent.printValue();
((Child)parent).myValue++;
parent.printValue();
}
}
回答问题:
Parent.printValue(),myValue=100
Child.printValue(),myValue=200
Child.printValue(),myValue=200
Child.printValue(),myValue=200
Child.printValue(),myValue=201
第一个创建一个Parent对象,调用的是父类构造方法
第二个创建一个Child对象,调用的是子类的构造方法
第三个将子类child的值赋给了parent,调用的是子类的构造方法
第四个parent.myValue++是对父类中的变量进行自加运算,而parent.printValue()实际上调用的还是子类的构造方法
第五个((Child)parent).myValue++是将parent对象强制转化成Child,所以指向的是Child类中的变量,进行自加运算之后输出。
(1)当子类与父类拥有一样的方法,并且让一个父类变量引用一个子类对象时,到底调用哪个方法,由对象自己的“真实”类型所决定,这就是说:对象是子类型的,它就调用子类型的方法,是父类型的,它就调用父类型的方法。
(2)这个特性实际上就是面向对象“多态”特性的具体表现。
(3)如果子类与父类有相同的字段,则子类中的字段会代替或隐藏父类的字段,子类方法中访问的是子类中的字段(而不是父类中的字段)。如果子类方法确实想访问父类中被隐藏的同名字段,可以用super关键字来访问它。
(4)如果子类被当作父类使用,则通过子类访问的字段是父类的!
标签:
原文地址:http://www.cnblogs.com/sdm69/p/4967011.html