当前位置: 技术问答>java相关
scjp问题,关于类型转换。
来源: 互联网 发布时间:2015-03-27
本文导语: Which statements, when inserted at the indicated position in the following code, will cause a runtime exception when attempting to run the program? class A {} class B extends A {} class C extends A {} public class Q3ae4 { public static v...
Which statements, when inserted at the indicated position in the following code, will cause a runtime exception when attempting to run the program?
class A {}
class B extends A {}
class C extends A {}
public class Q3ae4 {
public static void main(String args[]) {
A x = new A();
B y = new B();
C z = new C();
// insert statement here
}
}
1) x = y;
2) z = x;
3) y = (B) x;
4) z = (C) y;
5) y = (A) y;
请高手帮忙看看,最好能给出解释。
class A {}
class B extends A {}
class C extends A {}
public class Q3ae4 {
public static void main(String args[]) {
A x = new A();
B y = new B();
C z = new C();
// insert statement here
}
}
1) x = y;
2) z = x;
3) y = (B) x;
4) z = (C) y;
5) y = (A) y;
请高手帮忙看看,最好能给出解释。
|
1。编译运行通过。(基类指针指向子类)
3。编译通过,运行不通过。(语法检查时通过,但不能转换,attempted to cast an object to a subclass of which it is not an instance)
2、5、4。编译不通过。
java中不支持运算符重载,问题变得简单了(java的好处)。
3。编译通过,运行不通过。(语法检查时通过,但不能转换,attempted to cast an object to a subclass of which it is not an instance)
2、5、4。编译不通过。
java中不支持运算符重载,问题变得简单了(java的好处)。
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。