Java编程思想学习录(连载之:内部类)
程序员文章站
2022-11-23 22:00:47
内部类基本概念 可将一个类的定义置于另一个类定义的内部 内部类允许将逻辑相关的类组织在一起,并控制位于内部的类的可见性 甚至可将内部类定义于一个方法或者任意作用域内! 当然,内部类 ≠ 组合 内部类拥有其外围类 所有元素的 访问权 更有甚,嵌套多层的内部类能透明地访问所有它所嵌入的外围类的所有成员 ......
内部类基本概念
- 可将一个类的定义置于另一个类定义的内部
- 内部类允许将逻辑相关的类组织在一起,并控制位于内部的类的可见性
- 甚至可将内部类定义于一个方法或者任意作用域内!
- 当然,内部类 ≠ 组合
- 内部类拥有其外围类 所有元素的 访问权
- 更有甚,嵌套多层的内部类能透明地访问所有它所嵌入的外围类的所有成员
一个典型的例子:利用 java内部类 实现的 迭代器模式
// 接口 ------------------------------------------------------------- public interface selector { boolean end(); object current(); void next(); } // 外部类(集合类) + 内部类(迭代器类) ------------------------------------------------------------- public class sequence { // 外部类(代表一个集合类) private object[] items; private int next = 0; public sequence( int size ) { items = new object[size]; } public void add( object x ) { if( next < items.length ) items[next++] = x; } // 迭代器类:实现了 selector接口的 内部类 private class sequenceselector implements selector { private int i = 0; public boolean end() { return i == items.length; } public object current() { return items[i]; } public void next() { if( i<items.length ) ++i; } } public selector selector() { // 该函数也表明了:内部类也可以向上转型,这样在外部就隐藏了实现细节! return new sequenceselector(); } public static void main( string[] args ) { sequence sequence = new sequence(10); for( int i=0; i<10; ++i ) { // 装填元素 sequence.add( integer.tostring(i) ); } selector selector = sequence.selector(); // 获取iterator! while( !selector.end() ) { print( selector.current() + " " ); selector.next(); } } } // 输出 ------------------------------------------------------------- 0 1 2 3 4 5 6 7 8 9
.this 与 .new 的使用场景
.this用于在内部类中生成对其外部类对象的引用之时,举例:
public class dotthis { void f() { print("dotthis.f()"); } public class inner { // 内部类 public dotthis outer() { // 返回外部类对象的引用 return dotthis.this; // 若直接返回this,那指的便是内部类自身 } } public inner inner() { return new inner(); } public static void main( string[] args ) { dotthis dt = new dotthis(); dotthis.inner dti = dt.inner(); dti.outer().f(); // 输出 dotthis.f() } }
.new用于直接创建内部类的对象之时,距离:
public class dotnew { public class inner { } // 空内部类 public static void main( string[] args ) { dotnew dn = new dotnew(); dotnew.inner dni = dn.new inner(); //注意此处必须使用外部类的对象,而不能直接 dotnew.inner dni = new dotnew.inner() } }
嵌套类(static类型的内部类)
嵌套类是无需依赖其外部类的对象的。非static内部类通过一个特殊的this链接到其外围类的对象,而static类型的内部类无此this引用。
接口与内部类有着很有趣的关系: 放到接口中的任何类自动都是public且static,即接口中的任何类都是嵌套类,我们甚至可以在接口的内部类中去实现其外围接口,举例:
public interface classininterface { void howdy(); class test implements classininterface { // 类test默认static,所以是嵌套类 public void howdy() { print("howdy!"); } public static void main( string[] args ) { new test().howdy(); } } }
在 方法 和 作用域 内的内部类
可以称这类为 局部内部类!
方法中定义的内部类只能在方法内被使用,方法之外不可访问,举例:
public class parcel { // parcel是“包裹”之意 public destination destination( string s ) { class pdestination implements destination { // 方法中定义的内部类 private string label; private pdestination( string whereto ) { label = whereto; } public string readlabel() { return label; } } return new pdestination( s ); // 只有在方法中才能访问内部类pdestination } public static void main( string[] args ) { parcel p = new parcel(); destination d = p.destination( "hello" ); ... } }
更进一步,可在任意作用域内定义内部类,举例:
public class parcel { private void internaltracking( boolean b ) { if( b ) { // 局部作用域中定义了内部类,作用域之外不可访问! class trackingslip { private string id; trackingslip( string s ) { id = s; } string getslip() { return id; } } } } public void track() { intertracking( true ); } public static void main( string[] args ) { parcel p = new parcel(); p.track(); } }
匿名内部类
直观上看,这种内部类没有“名字”,举例:
public class parcel { public contents contents() { return new contents() { // 此即匿名内部类!!! private int i = 11; public int value() { return i; } }; // !!!注意这里必须要加分号!!! } public static void main( string[] args ) { parcel p = new parcel(); contents c = p.contents(); } }
若想将外部的参数传到匿名内部类中(典型的如将外部参数用于对匿名内部类中的定义字段进行初始化时)使用的话,该参数必须final,举例:
public class parcel { public destination destination( final string s ) { // final必须! return new destination() { private string label = s; public string readlabel() { return label; } }; // 分号必须! } public static void mian( string[] args ) { parcel p = new parcel(); destination d = p.destination("hello"); } }
匿名内部类中不可能有命名的显式构造器,此时只能使用实例初始化的方式来模仿,举例(当然下面这个例子还反映了匿名内部类如何参与继承):
// 基类 --------------------------------------------- abstact class base() { public base( int i ) { print( "base ctor, i = " + i ); } public abstract void f(); } //主类(其中包含了继承上面base的派生匿名内部类!) ---------------------------------------------- public class anonymousconstructor { public static base getbase( int i ) { // 该处参数无需final,因为并未在下面的内部类中直接使用! return new base(i){ // 匿名内部类 { // 实例初始化语法!!! print("inside instance initializer"); } public void f() { print( "in anonymous f()" ); } }; // 分号必须! } public static void main( string[] args ) { base base = getbase(47); base.f(); } } // 输出 ------------------------------------------ base ctor, i = 47 // 先基类 inside instance initializer // 再打印派生类 in anonymous f()
匿名内部类 + 工厂模式 = 更加简洁易懂:
// service接口 --------------------------------------------------- interface service { void method1(); void method2(); } // servicefactory接口 --------------------------------------------------- interface servicefactory { service getservice(); } // service接口的实现 --------------------------------------------------- class implementation1 implements service { private implementation1() {} // 构造函数私有 public void method1() { print("implementation1 method1"); } public void method2() { print("implementation1 method2"); } public static servicefactory factory = new servicefactory() { public service getservice() { return new implementation1(); } }; // 分号必须!!! } class implementation2 implements service { private implementation2() {} public void method1() { print("implementation2 method1"); } public void method2() { print("implementation2 method2"); } public static servicefactory factory = new servicefactory() { public service getservice() { return new implementation2(); } }; // 分号必须!!! } // 客户端代码 ---------------------------------------------------- public class factories { public static void serviceconsumer( servicefactory fact ) { service s = fact.getservice(); s.method1(); s.method2(); } public static void main( string[] args ) { servicecomsumer( implementation1.factory ); servicecomsumer( implementation2.factory ); } }
总结:为什么需要内部类
内部类可以独立地继承自一个接口或者类而无需关注其外围类的实现,这使得扩展类或者接口更加灵活,控制的粒度也可以更细!
注意java中还有一个细节:虽然java中一个接口可以继承多个接口,但是一个类是不能继承多个类的!要想完成该特性,此时除了使用内部类来“扩充多重继承机制”,你可能别无选择,举例:
class d { } // 普通类 abstract class e { } // 抽象类 class z extend d { // 外围类显式地完成一部分继承 e makee() { return new e() { }; // 内部类隐式地完成一部分继承 } } public class multiimplementation { static void takesd( d d ) { } static void takese( e e ) { } public static void main( string[] args ) { z z = new z(); takesd( z ); takese( z.makee() ); } }