java向上转型.docx

上传人:b****0 文档编号:12836653 上传时间:2023-04-22 格式:DOCX 页数:8 大小:16.07KB
下载 相关 举报
java向上转型.docx_第1页
第1页 / 共8页
java向上转型.docx_第2页
第2页 / 共8页
java向上转型.docx_第3页
第3页 / 共8页
java向上转型.docx_第4页
第4页 / 共8页
java向上转型.docx_第5页
第5页 / 共8页
点击查看更多>>
下载资源
资源描述

java向上转型.docx

《java向上转型.docx》由会员分享,可在线阅读,更多相关《java向上转型.docx(8页珍藏版)》请在冰豆网上搜索。

java向上转型.docx

java向上转型

5.13.1向上转型

我们在现实中常常这样说:

这个人会唱歌。

在这里,我们并不关心这个人是黑人还是白人,是成人还是小孩,也就是说我们更倾向于使用抽象概念“人”。

再例如,麻雀是鸟类的一种(鸟类的子类),而鸟类则是动物中的一种(动物的子类)。

我们现实中也经常这样说:

麻雀是鸟。

这两种说法实际上就是所谓的向上转型,通俗地说就是子类转型成父类。

这也符合Java提倡的面向抽象编程思想。

来看下面的代码:

packagea.b;

publicclassA{

publicvoida1(){

System.out.println("Superclass");

}

}

A的子类B:

packagea.b;

publicclassBextendsA{

publicvoida1(){

System.out.println("Childrenclass");//覆盖父类方法

}

publicvoidb1(){}//B类定义了自己的新方法

}

C类:

packagea.b;

publicclassC{

publicstaticvoidmain(String[]args){

Aa=newB();//向上转型

a.a1();

}

}

如果运行C,输出的是Superclass还是Childrenclass?

不是你原来预期的Superclass,而是Childrenclass。

这是因为a实际上指向的是一个子类对象。

当然,你不用担心,Java虚拟机会自动准确地识别出究竟该调用哪个具体的方法。

不过,由于向上转型,a对象会遗失和父类不同的方法,例如b1()。

有人可能会提出疑问:

这不是多此一举吗?

我们完全可以这样写:

Ba=newB();

a.a1();

确实如此!

但这样就丧失了面向抽象的编程特色,降低了可扩展性。

其实,不仅仅如此,向上转型还可以减轻编程工作量。

来看下面的显示器类Monitor:

packagea.b;

publicclassMonitor{

publicvoiddisplayText(){}

publicvoiddisplayGraphics(){}

}

液晶显示器类LCDMonitor是Monitor的子类:

packagea.b;

publicclassLCDMonitorextendsMonitor{

publicvoiddisplayText(){

System.out.println("LCDdisplaytext");

}

publicvoiddisplayGraphics(){

System.out.println("LCDdisplaygraphics");

}

}

阴极射线管显示器类CRTMonitor自然也是Monitor的子类:

packagea.b;

publicclassCRTMonitorextendsMonitor{

publicvoiddisplayText(){

System.out.println("CRTdisplaytext");

}

publicvoiddisplayGraphics(){

System.out.println("CRTdisplaygraphics");

}

}

等离子显示器PlasmaMonitor也是Monitor的子类:

packagea.b;

publicclassPlasmaMonitorextendsMonitor{

publicvoiddisplayText(){

System.out.println("Plasmadisplaytext");

}

publicvoiddisplayGraphics(){

System.out.println("Plasmadisplaygraphics");

}

}

现在有一个MyMonitor类。

假设没有向上转型,MyMonitor类代码如下:

packagea.b;

publicclassMyMonitor{

publicstaticvoidmain(String[]args){

run(newLCDMonitor());

run(newCRTMonitor());

run(newPlasmaMonitor());

}

publicstaticvoidrun(LCDMonitormonitor){

monitor.displayText();

monitor.displayGraphics();

}

publicstaticvoidrun(CRTMonitormonitor){

monitor.displayText();

monitor.displayGraphics();

}

publicstaticvoidrun(PlasmaMonitormonitor){

monitor.displayText();

monitor.displayGraphics();

}

}

可能你已经意识到上述代码有很多重复代码,而且也不易维护。

有了向上转型,代码可以更为简洁:

packagea.b;

publicclassMyMonitor{

publicstaticvoidmain(String[]args){

run(newLCDMonitor());//向上转型

run(newCRTMonitor());//向上转型

run(newPlasmaMonitor());//向上转型

}

publicstaticvoidrun(Monitormonitor){//父类实例作为参数

monitor.displayText();

monitor.displayGraphics();

}

}

我们也可以采用接口的方式,例如:

packagea.b;

publicinterfaceMonitor{

abstractvoiddisplayText();

abstractvoiddisplayGraphics();

}

将液晶显示器类LCDMonitor稍作修改:

packagea.b;

publicclassLCDMonitorimplementsMonitor{

publicvoiddisplayText(){

System.out.println("LCDdisplaytext");

}

publicvoiddisplayGraphics(){

System.out.println("LCDdisplaygraphics");

}

}

CRTMonitor、PlasmaMonitor类的修改方法与LCDMonitor类似,而MyMonitor可以不不作任何修改。

可以看出,向上转型体现了类的多态性,增强了程序的简洁性。

5.13.2向下转型

子类转型成父类是向上转型,反过来说,父类转型成子类就是向下转型。

但是,向下转型可能会带来一些问题:

我们可以说麻雀是鸟,但不能说鸟就是麻雀。

来看下面的例子:

A类:

packagea.b;

publicclassA{

voidaMthod(){

System.out.println("Amethod");

}

}

A的子类B:

packagea.b;

publicclassBextendsA{

voidbMethod1(){

System.out.println("Bmethod1");

}

voidbMethod2(){

System.out.println("Bmethod2");

}

}

C类:

packagea.b;

publicclassC{

publicstaticvoidmain(String[]args){

Aa1=newB();//向上转型

a1.aMthod();//调用父类aMthod(),a1遗失B类方法bMethod1()、bMethod2()

Bb1=(B)a1;//向下转型,编译无错误,运行时无错误

b1.aMthod();//调用父类A方法

b1.bMethod1();//调用B类方法

b1.bMethod2();//调用B类方法

Aa2=newA();

Bb2=(B)a2;//向下转型,编译无错误,运行时将出错

b2.aMthod();

b2.bMethod1();

b2.bMethod2();

}

}

从上面的代码我们可以得出这样一个结论:

向下转型需要使用强制转换。

运行C程序,控制台将输出:

Exceptioninthread"main"java.lang.ClassCastException:

a.b.Acannotbecasttoa.b.Bat

a.b.C.main(C.java:

14)

Amethod

Amethod

Bmethod1

Bmethod2

其实黑体部分的向下转型代码后的注释已经提示你将发生运行时错误。

为什么前一句向下转型代码可以,而后一句代码却出错?

这是因为a1指向一个子类B的对象,所以子类B的实例对象b1当然也可以指向a1。

而a2是一个父类对象,子类对象b2不能指向父类对象a2。

那么如何避免在执行向下转型时发生运行时ClassCastException异常?

使用5.7.7节学过的instanceof就可以了。

我们修改一下C类的代码:

Aa2=newA();

if(a2instanceofB){

Bb2=(B)a2;

b2.aMthod();

b2.bMethod1();

b2.bMethod2();

}

展开阅读全文
相关资源
猜你喜欢
相关搜索

当前位置:首页 > 外语学习 > 日语学习

copyright@ 2008-2022 冰豆网网站版权所有

经营许可证编号:鄂ICP备2022015515号-1