|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
package practice;
class Person{
public Person() {}
}
class Student extends Person{
public Student() {}
}
public class Pra014 {
static void foo(Person p) {
System.out.println("I am a instance of "+p.getClass());
}
public static void main(String[] args) {
// TODO Auto-generated method stub
Person p = new Person();
Student s = new Student();
foo(p);
foo(s);
}
}
============================================
IDE提示warning的地方我用红色标出来了,但知道是哪里的问题。(之前觉得也许是static关键字和继承的问题。)
|
|