淺析Java內部類在GUI設計中的作用(2)
四、方法內部類
方法內部類只在該方法內部可見,方法內部類可以定義在方法中的任何位置。
- /**
- * 內部類實現介面
- *
- * @author leizhimin 2009-7-17 14:57:50
- */
- public class Test2 {
- public static void main(String[] args) {
- Outer outer = new Outer();
- Foo f = outer.genFoo();
- Bar b = outer.genBar();
- f.say();
- b.readme();
- }
- }
- class Outer {
- public Foo genFoo() {
- //方法內的內部類
- class FooImpl implements Foo {
- public void say() {
- System.out.println( "say foo!" );
- }
- }
- return new FooImpl();
- }
- public Bar genBar() {
- Bar b = null ;
- if ( true ) {
- //任意位置的內部類
- class BarImpl implements Bar {
- public void readme() {
- System.out.println(
"say bar!"
- }
- }
- b = new BarImpl();
- }
- return b;
- }
- }
執行結果:
say foo!
say bar!
Process finished with exit code 0
五、匿名類
匿名類不給出類名,直接定義一個類,通常這個類實現了某種介面或者抽象。匿名類的訪問許可權更沒有討論價值了,看個例子就行了。
在一些多執行緒程式中比較常見,有點變態,呵呵。
- /**
- * 匿名類.
- *
- * @author leizhimin 2009-7-17 15:56:17
- */
- public class Test3 {
- public Foo f = new Foo() {
- public void say() {
- System.out.println( "O(∩_∩)O哈哈~!" );
- }
- };
- public Foo test() {
- return new Foo() {
- public void say() {
- System.out.println( "say foo!" );
- }
- };
- }
- public static void main(String[] args) {
- Test3 t = new Test3();
- t.f.say();
- t.test().say();
- }
- }
- interface Foo {
- void say();
- }
執行結果:
say foo!
- Process finished with exit code 0
- /**
- * 普通類的匿名初始化
- *
- * @author leizhimin 2009-7-17 16:13:31
- */
- public class Fk {
- private String x;
- public Fk(String x) {
- this .x = x;
- }
- @Override
- public String toString() {
- return "Fk{" +
- "x='" + x + '/ '' +
- '}' ;
- }
- }
- class Test4 {
- public Fk hehe() {
- //把後面的一對大括號去掉呢,呵呵
- return new Fk( "fk" ) {
- };
- }
- public static void main(String[] args) {
- Test4 t = new Test4();
- Fk f = t.hehe();
- System.out.println(f);
- }
- }
執行結果:
Fk{x='fk'}
Process finished with exit code 0
還有一個不得不提的經典例項,來自thining in java,有改動:
- interface Service {
- void method1();
- void method2();
- }
- interface ServiceFactory {
- Service getService();
- }
- class Implementation1 implements Service {
- private Implementation1() {}
- public void method1() {System.out.println( "Implementation1 method1" );}
- public void method2() {System.out.println( "Implementation1 method2" );}
- public static ServiceFactory factory = new ServiceFactory() {
- public Service getService() {
- return new Implementation1();
- }
- };
- }
- class Implementation2 implements Service {
- private Implementation2() {}
- public void method1() {System.out.println( "Implementation2 method1" );}
- public void method2() {System.out.println( "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) {
- serviceConsumer(Implementation1.factory);
- serviceConsumer(Implementation2.factory);
- }
- }
這個應用給了我們很多思考,我就不說了,不同人看了會有不同的感受。
內部類的巧妙使用會讓你的程式碼很牛,如果要形容下,那就是:沒看懂的時候感覺神出鬼沒,看懂後感覺鬼斧神工。不過這些程式碼多了,別人想看懂都難,想 看懂你思路就難上加難了。呵呵!
六、靜態內部類
靜態內部類是static class型的內部類,這種內部類特點是:它不能訪問外部類的非靜態成員。要建立靜態內部類物件時候,也不需要外部類物件了,直接可以:
new 外部類名.內部類構造方法
來建立,給個例子:
- /**
- * 靜態內部類
- *
- * @author leizhimin 2009-7-17 16:53:05
- */
- public class Outer {
- public static int i = 500 ;
- protected static class Inner {
- int i = 100 ;
- String name;
- Inner(String name) {
- this .name = name;
- }
- void sayHello() {
- System.out.println( "Hello " + name);
- Outer.i++;
- }
- }
- public Inner genInner(String name) {
- return new Inner(name);
- }
- }
- class Test {
- public static void main(String[] args) {
- Outer.Inner in1 = new Outer.Inner( "1111" );
- in1.sayHello();
- System.out.println(Outer.i);
- Outer.Inner in2 = new Outer().genInner( "2222" );
- in2.sayHello();
- System.out.println(Outer.i);
- }
- }
執行結果:
Hello 1111
501
Hello 2222
502
Process finished with exit code 0
七、介面內部類
介面內部類自動都是public static的,相當於為介面定義了一種變數型別,這在java的設計中就有使用,比如在HashMap中,就有:
static class Entry<K,V> implements Map.Entry<K,V>
下面我給個例子,
- /**
- * 介面內部類
- *
- * @author leizhimin 2009-7-17 17:20:28
- */
- public interface AInterface {
- void readme();
- class Inner1 implements AInterface {
- public void readme() {
- System.out.println( "我是一個介面內部類" );
- }
- }
- }
- class Main {
- public static void main(String[] args) {
- AInterface.Inner1 in1 = new AInterface.Inner1();
- in1.readme();
- }
- }
八、內部的類的巢狀
所謂內部類巢狀,就是內部類裡面再定義內部類。其實這種用法還真沒見過,試試寫個簡單例子看看吧:
- /**
- * 巢狀內部類
- *
- * @author leizhimin 2009-7-17 17:33:48
- */
- public class Outer {
- private void f0() {
- System.out.println( "f0" );
- }
- class A {
- private void a() {
- f0();
- System.out.println( "a" );
- }
- class B {
- protected void b() {
- a();
- System.out.println( "b" );
- }
- }
- }
- }
- class Test{
- public static void main(String[] args) {
- Outer o = new Outer();
- Outer.A a = o. new A();
- Outer.A.B b = a. new B();
- b.b();
- }
- }
執行結果:
f0
a
b
Process finished with exit code 0
八、內部類的繼承
內部類的繼承,可以繼承內部類,也可以繼承外部類。
- /**
- * 內部類的繼承,可以繼承內部類,也可以繼承外部類
- *
- * @author leizhimin 2009-7-22 13:50:01
- */
- public class Outer {
- class Inner {
- void doSomething() {
- System.out.println( "Inner doing ..." );
- }
- }
- class Inner2 extends Inner {
- void doSomething() {
- System.out.println( "Inner2 doing ..." );
- }
- void readme() {
- System.out.println( "HeHe!" );
- }
- }
- }
- class Test {
- public static void main(String[] args) {
- Outer outer = new Outer();
- Outer.Inner in = outer. new Inner();
- Outer.Inner2 in2 = outer. new Inner2();
- in.doSomething();
- in2.doSomething();
- in2.readme();
- }
- }
執行結果:
Inner doing ...
Inner2 doing ...
HeHe!
Process finished with exit code 0
總結 :
內部類是Java中最複雜深奧的概念之一,而且內部類在訪問控制,修飾符,繼承,實現,抽象,序列化等等很多方面都是一個很讓人迷惑的問題,在實際 中,這些問題也許永遠沒機會沒時間搞清,但是一般說來,懂得以上的內部類的知識就足夠用了。
內部類的設計也許是彌補Java語言本身的先天不足吧,作為語言來說,這個特性太變態了點,難道就沒別的法了?
以上的總結完全是建立在實踐基礎上的,所列舉的例子也許偏頗,不能全面反映問題的本質,希望有興趣的博友多多發表自己的看法與觀點。
本文轉自 http://developer.51cto.com/art/201002/183375_1.htm
希望對有需要的朋友有幫助