内部类
可以将一个类的定义放在另一个类的定义内部,这就是内部类。
内部类允许把逻辑相关的类组织在一起,并控制位于内部的类的可视性。
内部类了解外围类(在其中定义该内部类的类),并能与之通信。
创建内部类
/**
* 内部类
*/
//: Parcell.java
public class Parcell {
class Contents {
private int i = 11;
public int value() { return i; }
}
class Destination {
private String label;
Destination(String whereTo) {
label = whereTo;
}
String readLine() { return label; }
}
public void ship(String dest) {
Contents c = new Contents();
Destination d = new Destination(dest);
System.out.println(d.readLine());
}
public static void main(String[] args) {
Parcell p = new Parcell();
p.ship("Tasmania");
}
} /** Output
Tasmania
*/
内部类更典型的用法是,外部类调用一个方法,该方法返回一个指向内部类的引用。
如果想从外部类的非静态方法之外的任意位置创建某个内部类的对象引用,那么必须具体指明这个对象的类型,比如:OuterClassName.InnerClassName
。
链接到外部类
当生成一个内部类的对象时,此对象与制造它的外围对象之间就有了一种联系,所以他能访问其外围对象的所有成员,而不需要任何特殊条件。
此外,内部类还拥有其外围类的所有元素的访问权。
//: Sequence.java
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;
}
}
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();
while(!selector.end()) {
System.out.print(selector.current() + " ");
selector.next();
}
}
} /** Output
0 1 2 3 4 5 6 7 8 9
*/
内部类自动拥有对其外围类所有成员的访问权, 内部类可以访问其外围类的方法和字段, 就像自己拥有它们似的, 这带来了很大的方便.
当某个外围类的对象创建了一个内部类对象时, 此内部对象必定会秘密地捕获一个指向那个外围类对象的引用. 然后, 在访问此外围类的成员时, 就是用那个引用来选择外围类的成员.
使用.this和.new
如果需要生成对外部类对象的引用,可以使用外部类的名字后面紧跟远点和this。这样产生的引用自动地具有正确的类型。
//: DotThis.java
public class DotThis {
void f() {
System.out.println("DotThis.f()");
}
public class Inner {
public DotThis outer() {
return DotThis.this;
// A plain this would be Inner's 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();
}
} /** Output
DotThis.f()
*/
如果要告知其他对象,去创建其某个内部类的对象。要实现此目的,必须在new表达式中提供对其他外部类对象的引用,这时需要使用.new语法。
//: DotNew.java
public class DotNew {
public class Inner {}
public static void main(String args[]) {
DotNew dn = new DotNew();
DotNew.Inner dni = dn.new Inner();
}
}
创建内部类对象,不是引用外部类的名字(上例中DotNew),而是必须使用外部类的对象来创建该内部类对象。
在拥有外部类对象之前,是不能创建内部类对象的。因为内部类对象会隐式连接到创建它的外部类对象上。但是如果创建的是嵌套类(静态内部类),那么它就对不需要外部类对象的引用。
//: DotNew.java
public class DotNew {
public class Inner {
public void f() {
System.out.println("DotNew.Inner.f()");
}
}
public static class StaticInner {
public void f() {
System.out.println("DotNew.StaticInner.f()");
}
}
public Inner f() {
return new Inner(); // 注意这里
}
public static void main(String args[]) {
DotNew dn = new DotNew();
DotNew.Inner dni = dn.new Inner();
dni.f();
//! Inner in = new Inner(); // Error: 无法从静态上下文中引用非静态 变量 this
//! Inner in = new DotNew.Inner(); // Error: 无法从静态上下文中引用非静态 变量 this
Inner in = dn.new Inner();
in.f();
Inner fin = dn.f();
fin.f();
// Inner in2 = new dn.Inner(); // Error: 程序包dn不存在
StaticInner si = new StaticInner();
si.f();
}
} /** Output
DotNew.Inner.f()
DotNew.Inner.f()
DotNew.Inner.f()
DotNew.StaticInner.f()
*/
内部类和向上转型
如果内部类是某个接口的实现,那么就可以完全不可见,并且不可用。所得到的只是指向基类或接口的引用,所以能够很方便地隐藏实现细节。
//: TestParcel.java
interface Destination {
String readLabel(); // 接口中所有成员自动设置为public
}
interface Contents {
int value();
}
class Parcel {
private class PContents implements Contents {
private int i = 0;
public int value() { return i++; }
}
protected class PDestination implements Destination {
private String label;
private PDestination(String whereTo) {
label = whereTo;
}
public String readLabel() { return label; }
}
public Destination destination(String s) {
return new PDestination(s);
}
public Contents contents() {
return new PContents();
}
}
public class TestParcel {
public static void main(String args[]) {
Parcel p = new Parcel();
Contents c = p.contents();
Destination d = p.destination("Beijing");
System.out.println(c.value());
System.out.println(d.readLabel());
}
} /** Output
0
Beijing
*/
private内部类给类设计者提供了一种途径,通过这种方式可以完全阻止任何依赖于类型的编码,并且完全隐藏了实现的细节。
在方法和作用域内的内部类
可以在一个方法里面或者在任意的作用域内定义内部类,这有两个理由:
实现了某类型得劲接口,于是可以创建并返回对其的引用
要解决一个复杂的问题,想创建一个类来辅助解决方案,但是又不希望这个类是公用的
在方法的作用域内(而不是在其他类的作用域内)创建一个完整的类,这被称作局部内部类。
//: Destination.java
public interface Destination {
String readLabel();
}
//: Parcel5.java
public class Parcel5 {
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);
}
public static void main(String args[]) {
Parcel5 p = new Parcel5();
Destination d = p.destination("Tasmania");
System.out.println(d.readLabel());
}
} /** Output
Tasmania
*/
上例:
PDestination
类是destination()
方法的一部分,而不是Parcel5
的一部分。所以destination()
之外就不能访问PDestination
。可以在同一个目录下的任意类中对某个内部类使用类标识符
PDestination
,且不会产生命名冲突。
匿名内部类
//: Contents.java
public interface Contents {
int value();
}
//: Parcel7.java
// returning an instance of an anonymous inner class
public class Parcel7 {
public Contents contents() {
return new Contents() { // insert a class definition
private int i = 11;
public int value() { return i; }
}; // 这种情况下分号是必须的
}
public static void main(String args[]) {
Parcel7 p = new Parcel7();
Contents c = p.contents();
System.out.println(c.value());
}
} /** Output
11
*/
contents()
方法将返回值的生成与表示这个返回值的类的定义结合在一起。另外,这个类是匿名的,它没有名字。这种方式叫做:创建一个继承自Contents的匿名类的对象。通过new表达式返回的引用被自动向上转型为对Contents的引用,上述匿名内部类的语法是下述形式的简化形式:
//: Parcel7b.java
public class Parcel7b {
class MyContents implements Contents {
private int i = 11;
public int value() { return i; }
}
public Contents contents() { return new MyContents(); }
public static void main(String args[]) {
Parcel7b p = new Parcel7b();
Contents c = p.contents();
System.out.println(c.value());
}
} /** Output
11
*/
如何在匿名内部类中向基类构造器传递参数:
//: Parcel8.java
public class Parcel8 {
public Wrapping wrapping(int x) {
// Base constructor call
return new Wrapping(x) { // pass Constructor argument
public int value() {
return super.value() * 47;
}
};
}
public static void main(String args[]) {
Parcel8 p = new Parcel8();
Wrapping w = p.wrapping(10);
System.out.println(w.value());
}
} /** Output
470
*/
class Wrapping {
private int i;
public Wrapping(int x) { i = x; }
public int value() { return i; }
}
在匿名类中定义字段时,还能够对其进行初始化操作。
如果定义一个匿名内部类,并且希望它使用一个在其外部定义的对象,那么编译器会要求其参数引用是final的。
在匿名内部类中不可能有命名的构造器(因为它根本没有名字),但通过实例初始化,能够达到为匿名内部类创建一个构造器的效果。
//: Destination.java
public interface Destination {
String readLabel();
}
//: Parcel10.java
public class Parcel10 {
public Destination destination(final String dest, final float price) {
return new Destination() {
private int cost;
// Instance initialization for each object;
{
System.out.println("Inside instance initializer");
cost = Math.round(price);
if (cost > 100) {
System.out.println("Over budget!");
}
}
private String label = dest;
public String readLabel() { return label; }
};
}
public static void main(String[] args) {
Parcel10 p = new Parcel10();
Destination d = p.destination("Tasmania", 101.223F);
System.out.println(d.readLabel());
}
} /** Output
Inside instance initializer
Over budget!
Tasmania
*/
匿名内部类与正规的继承相比有些受限,因为匿名内部类即可以扩展类,也可以实现接口,但是不能两者兼备。而且,如果是实现接口,也只能实现一个接口。
嵌套类
如果不需要内部类对象与其他外围类对象之间有联系,那么可以将内部类声明为static,这通常称为嵌套类。
普通的内部类对象隐式地保存了一个引用,指向创建它的外围类对象,然而在内部类是static时,就不这样了:
要创建嵌套类对象,并不需要外围类的对象
不能从嵌套类的对象中访问非静态的外围类对象
普通内部类的字段与方法,只能放在类的外部层次上,所以普通的内部类不能有static数据和static字段,也不能包含嵌套类,但是嵌套类可以。
接口内部的类
正常情况下,不能在接口内部放置任何代码,但嵌套类可以作为接口的一部分。放到接口中的任何类都自动地是public和static的。因为类是static的,只是将嵌套类置于接口的命名空间内,这并不违反接口的规则。可以在内部类中实现其外围接口。
//: ClassInInterface.java
// {main: ClassInInterface$Test}
public interface ClassInInterface {
void howdy();
class Test implements ClassInInterface {
public void howdy() {
System.out.println("Howdy!");
}
public static void main(String args[]) {
new Test().howdy();
}
}
} /** Output
$ java ClassInInterface\$Test
Howdy!
*/
多层嵌套类中访问外部类的成员
一个内部类被嵌套多少层并不重要,它能透明地访问所有它嵌入的外围类的所有成员。
//: MultiNestingAccess.java
class MNA {
private void e() {
System.out.println("MNA.e()");
}
private void f() {
System.out.println("MNA.f()");
}
class A {
private void g() {
System.out.println("MNA.A.g()");
}
private void f() {
System.out.println("MNA.A.f()");
}
public class B {
void h() {
System.out.println("MNA.A.B.h()");
e();
MNA.this.f(); // 访问最外围类成员
f();
g();
}
}
}
}
public class MultiNestingAccess {
public static void main(String args[]) {
MNA mna = new MNA();
MNA.A mnaa = mna.new A();
MNA.A.B mnaab = mnaa.new B();
mnaab.h();
}
} /** Output
MNA.A.B.h()
MNA.e()
MNA.f()
MNA.A.f()
MNA.A.g()
*/
为什么需要内部类
闭包与回调
闭包是一个可调用的对象,它记录了一些信息,这些信息来自于创建它的作用域。
通过内部类提供闭包的功能来实现回调,比指针更灵活、更安全。
//: Callbacks.java
interface Incrementable {
void increment();
}
class Callee1 implements Incrementable {
private int i = 0;
public void increment() {
i++;
System.out.println(i);
}
}
class MyIncrement {
public void increment() {
System.out.println("Other operation");
}
static void f(MyIncrement mi) {
mi.increment();
}
}
class Callee2 extends MyIncrement {
private int i = 0;
public void increment() {
super.increment();
i++;
System.out.println(i);
}
private class Closure implements Incrementable {
public void increment() {
Callee2.this.increment();
}
}
Incrementable getCallbackReference() {
return new Closure();
}
}
class Caller {
private Incrementable callbackReference;
Caller(Incrementable cbh) {
callbackReference = cbh;
}
void go() {
callbackReference.increment();
}
}
public class Callbacks {
public static void main(String[] args) {
Callee1 c1 = new Callee1();
Callee2 c2 = new Callee2();
MyIncrement.f(c2);
Caller caller1 = new Caller(c1);
Caller caller2 = new Caller(c2.getCallbackReference());
caller1.go();
caller1.go();
caller2.go();
caller2.go();
}
} /** Output
Other operation
1
1
2
Other operation
2
Other operation
3
*/
内部类Closure
实现了Incrementable
,以提供一个返回Callee2
的 钩子 ,无论谁获得此Incrementable
的引用,都只能调用increment()
。
内部类的继承
//: InheritInner.java
class WithInner {
class Inner {}
}
public class InheritInner extends WithInner.Inner {
//! InheritInner() { } // Error: 需要包含WithInner.Inner的封闭实例
InheritInner(WithInner wi) {
wi.super();
}
public static void main(String args[]) {
WithInner wi = new WithInner();
InheritInner ii = new InheritInner(wi);
}
}
最后更新于
这有帮助吗?