快速业务通道

探讨Java内部类的可见性 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-19
    //create an outer object     Out out=new Out();     //create a public inner object by ''new''     Out.PublicIn publicIn=out.new PublicIn();     publicIn.public_arg=0;     publicIn.public_method();     // create a public inner object by ''out''s method''     Out.PublicIn publicIn2 = out.getPublicIn();     publicIn2.public_arg=0;     publicIn2.public_method();     //use Interface reference     InMethod method;     method=out.getPrivateIn();     method.public_method();     method=out.getDefaultIn();     method.public_method();     method=out.getProtectedIn();     method.public_method();     method=out.getPublicIn();     method.public_method();    } }

探讨Java内部类的可见性(4)

时间:2011-02-12 zhangjunhd

通过new方式和getInnerInstance()方法只能访问public内部类的public成员和public方法;如果使用接口的引用,则可以访问所有4个内部类的public方法。

4.不同包继承类的访问

在另一个包中建立一个类DifferPackageExtend.java,它继承自外部类Out。

DifferPackageExtend.java package com.zj.other; import com.zj.main.Out; public class DifferPackageAndExtend extends Out{    public static void main(String[] args){     //create an DifferPackageAndExtend''s object,which extends Out     Out extend=new DifferPackageAndExtend();     //create a protected inner object by ''new''     //Out.ProtectedIn protectedIn=extend.new ProtectedIn();     //->error:The constructor Out.ProtectedIn() is not visible     // create a protected inner object by ''out''s method''     Out.ProtectedIn protectedIn=extend.getProtectedIn();     protectedIn.public_arg=0;     protectedIn.public_method();    } }

通过new方式,虽然可以得到内部类的句柄Out.ProtectedIn,但该内部类的构造子却不可见。

通过getInnerInstance()方法得到protected内部类的对象,但只能访问到public成员和public方法。由此可知,protected内部类并不关心是否有其他类继承自它的外部类。所有protected访问权限不在此种情况下适用。

本文出自 “子 孑” 博客,请务必保留此出处http://zhangjunhd.blog.51cto.com/113473/65624

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号