java为什么不能new接口的实现类
java为什么不能new接口的实现类?要是new的话,执行就报下面的错误:Exceptioninthread"main"java.lang.Error:Unresolve...
java为什么不能new接口的实现类?要是new的话,执行就报下面的错误:Exception in thread "main" java.lang.Error: Unresolved compilation problem:
Cannot instantiate the type People
at common.test.Demp.main(Demp.java:7)请大神指教。
package common.test;
public interface People {
public void say();
}
package common.test;
public class Chines implements People {
public void say() {
System.out.println("hello world");
}
}
package common.test;
public class Demp {
public static void main(String[] args) {
People people=new Chines();
people.say();
People people222a =new People();
people222a.say();
}
} 展开
Cannot instantiate the type People
at common.test.Demp.main(Demp.java:7)请大神指教。
package common.test;
public interface People {
public void say();
}
package common.test;
public class Chines implements People {
public void say() {
System.out.println("hello world");
}
}
package common.test;
public class Demp {
public static void main(String[] args) {
People people=new Chines();
people.say();
People people222a =new People();
people222a.say();
}
} 展开
7个回答
2015-12-06 · 做真实的自己 用良心做教育
千锋教育
千锋教育专注HTML5大前端、JavaEE、Python、人工智能、UI&UE、云计算、全栈软件测试、大数据、物联网+嵌入式、Unity游戏开发、网络安全、互联网营销、Go语言等培训教育。
向TA提问
关注
展开全部
new ActionListener() 是创建一个继承自ActionListener的匿名类对象,通过new表达式返回的引用自动向上转型为对ActionListener的引用。因为匿名类本身无名,也就不存在构造方法,需要显式调用父类的构造方法,并重写父类的方法。
展开全部
People 叫接口,Chines才叫实现类,接口不能new ,你可以这样
People people222a =new People(){
public void say(){
System.out.println("这里同样是People的实现类,不是接口");
}
};
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
public class Demp {
public static void main(String[] args) {
People people=new Chines();
people.say();
People people222a =new People(){
public void say() {
System.out.println("这里是匿名类");
}
};
people222a.say();
}
}
接口不能直接new的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
接口的方法是没有具体的实现方法体的,new是针对一个Class进行实例化。
比如你有一个接口TestInterface,如果你有一个类TestInterfaceImpl实现类进行了实现,那么你可以通过TestInterface testi = new TestInterfaceImpl();进行实例化。
比如你有一个接口TestInterface,如果你有一个类TestInterfaceImpl实现类进行了实现,那么你可以通过TestInterface testi = new TestInterfaceImpl();进行实例化。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
使用new的时候,编译器实际做的事是,找到相应的类里面的构造器,初始化,创建出一个对象,你的接口里面显然不可能存在构造器,所以不能new 接口
People people=new Chines();
这一句表示的是向上转型,
People people=new Chines();
这一句表示的是向上转型,
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询