标题: 接口不是不能示例化吗 [打印本页] 作者: 敲敲敲dm 时间: 2016-8-8 10:27 标题: 接口不是不能示例化吗 public class MemberPoints {
public static void main(String[] args) {
Person p = new Student(); //为什么这不报错,求教
p.print();
}
}
interface Person{
public static final int age=10;
void print();
//public Person(){}
}
class Student implements Person{
public void print(){
System.out.println( age);
}
}
为什么