Java的兩個特性

來源:互聯網
上載者:User
第一個例子:

import java.lang.*;
public class Test {

    public static void main(String[] str)
    {        
        Fun(new MyInterface(){public void Say()
        {            
            System.out.println("this is temp interface");
        }});
        Fun(new People(){public void Say()
        {            
            System.out.println("this is temp class");
        }});
    }
    
    static void Fun(MyInterface p)
    {
        p.Say();        
    }
}

interface MyInterface
{
    public void Say();
}

class People implements MyInterface
{
    public void Say()
    {
        
        System.out.println("this is People");
    }
}

程式輸出:

this is temp interface
this is temp class

 

 

 

 

第二個例子:

import java.lang.*;
public class Test {

    public static void main(String[] str)
    {        
        new Test().TestFun();
    }
    
    static void Fun(MyInterface p)
    {
        
        p.Say();        
    }
    
    void Why()
    {
        System.out.println("Why");
    
    }
    
    void TestFun()
    {        
        Fun(new MyInterface(){public void Say()
        {    
            Test.this.Why();
            Why();    
            
            //如果加這一句,會進入死迴圈 this.Say();
            //總結,在這個方法裡this代表一個MyInterface類型,而可直接使用Test的方法。
        }});
    }
}

interface MyInterface
{
    public void Say();
}

 程式輸出:Why
Why

 

第三個例子

public class Test {
    static    int Age=123;
    public static void main(String[] str) {       

 

        System.out.println(myInterface.getClass());

        Fun(myInterface);
        Age+=1;
        Fun(myInterface);
    }

    static void Fun(MyInterface p) {
        p.Say();
    }
    
    static MyInterface myInterface =new MyInterface() {        
        @Override
        public void Say() {
            System.out.println(Age);            
        }
    };
}

 

 

interface MyInterface
{
    public void Say();
}

 

 

程式輸出:

 

class Test$1

 

123

124

 

 

第四個例子:

 

public class Test {
    public static void main(String[] str) {

        B.Test();
    }

    public void Run() {
        System.out.println("Test.Run");

    }
}

class B {
    public static void Test() {
        Test t = new Test(){
            public void Run() {
                System.out.println(this.getClass());
            }
        };
        t.Run();
        Test t2=new Test();
        System.out.println(t2.getClass());
    }
}

程式輸出: class B$1
class Test

 

 

第五個例子:

class Test {
    public static void main(String[] args)
    {
        A a=new A(){
            @Override
            void Eat() {                
                super.Eat();
                this.Say();
                System.out.println("a.eat");
            }
        };
        a.Eat();
        System.out.println((a instanceof A));
        System.out.println((a.getClass()));
        
    }
}

class A {
    void Say() {
        System.out.println("A.Say");
    }

    void Eat() {
        System.out.println("A.Eat");
    }
}

 

程式輸出:

A.Eat
A.Say
a.eat
true
class Test$1

 

 

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.