当前位置: 技术问答>java相关
这有一道JAVA认证题,有谁会,帮帮忙!
来源: 互联网 发布时间:2015-03-15
本文导语: 有两个类,分别在两个文件中 public class Base{ public void method(int i){ System.out.println("Value is "+i); } } public class Test extends Base{ public Test(int j){ } public Test(int j,int k){super(j,k);} } 问...
有两个类,分别在两个文件中
public class Base{
public void method(int i){
System.out.println("Value is "+i);
}
}
public class Test extends Base{
public Test(int j){
}
public Test(int j,int k){super(j,k);}
}
问:Which of the following forms of constructor must exist explicitly in the definition of the Base class?
A. Base(){}
B. Base(int j){}
C.Base(int j,int k){}
D.Base(int j,int k,int L){}
谁知道答案,为什么,请指教
public class Base{
public void method(int i){
System.out.println("Value is "+i);
}
}
public class Test extends Base{
public Test(int j){
}
public Test(int j,int k){super(j,k);}
}
问:Which of the following forms of constructor must exist explicitly in the definition of the Base class?
A. Base(){}
B. Base(int j){}
C.Base(int j,int k){}
D.Base(int j,int k,int L){}
谁知道答案,为什么,请指教
|
a,c
因为 public Test(int j){} 说明父类中需要存在Base()这个构造函数,但是这个构造可以不写由系统自动完成。
public Test(ing j, int k){super(j,k);} 说明说明父类中需要存在Base(int j, int k)这个构造函数,但是如果这个Constructor存在的话,Base()这个Constructor就必须添加,因为这个时候系统不会自动添加这个缺省Constructor了。
因为 public Test(int j){} 说明父类中需要存在Base()这个构造函数,但是这个构造可以不写由系统自动完成。
public Test(ing j, int k){super(j,k);} 说明说明父类中需要存在Base(int j, int k)这个构造函数,但是如果这个Constructor存在的话,Base()这个Constructor就必须添加,因为这个时候系统不会自动添加这个缺省Constructor了。
|
a必须要
因为在class Test中的public Test(int j)里面没有显式的调用super,那么就会隐式调用super(),所以new Base()是一定要的
c也要
因为在class Test中的public Test(int j)里面没有显式的调用super,那么就会隐式调用super(),所以new Base()是一定要的
c也要
|
If any other constructor is created,Java will no longer create a default no-arguments constructor for you.
If the superclass contains a constructor that has arguments,Java will not create a default constructor for any subclasses that are created.
这两句话不知道对你有没有用(出自《Sun认证Java 2 程序员学习指南》)
If the superclass contains a constructor that has arguments,Java will not create a default constructor for any subclasses that are created.
这两句话不知道对你有没有用(出自《Sun认证Java 2 程序员学习指南》)
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。