美文网首页
Java中的接口对象

Java中的接口对象

作者: 千若逸 | 来源:发表于2016-05-27 16:16 被阅读462次

    最近在看一些Java代码,同时也在边看边学。看到这个标题你也许很奇怪,Java中何来接口对象?其实它是我造的一个词,因为我看到Java中可以把接口作为类型来使用,看上去跟一个普通的对象声明类似。

    比如,定义了下面的一个Sourcable接口:

    package pattern.decorator;  
      
    public interface Sourcable {  
        public void operation();  
      
    } 
    

    下面代码中的Sourcable sourcable声明就是我所说的接口对象:

    package pattern.decorator;  
      
    public class Decorator1 implements Sourcable {  
        private Sourcable sourcable;  
        public Decorator1(Sourcable sourcable){  
            super();  
            this.sourcable=sourcable;  
        }  
        public void operation() {  
            System.out.println("第一个装饰器前");  
            sourcable.operation();  
            System.out.println("第一个装饰器后");  
      
        }  
      
    } 
    

    作为一个iOSer来说,刚开始看到这个还是挺疑惑的,怎么会有一个接口对象呢?
    那么对于sourcable应该是怎么赋值呢?答案是用实现了Sourcable接口的类的实例对象赋值给它。

    现在懂了,Sourcable sourcable;不就和Objective-C中的这个代码等效嘛:

    id<Sourcable> sourcable;
    

    意即,声明了一个遵守Sourcable协议的任意类型的实例对象sourcable,只要某个类遵守了Sourcable协议,它的实例对象就可以赋值给sourcable。

    可能是先入为主,我觉得Objective-C中的这种表达更易于理解。另外,也可以看出多掌握几门语言没坏处,是可以触类旁通的。

    相关文章

      网友评论

          本文标题:Java中的接口对象

          本文链接:https://www.haomeiwen.com/subject/kycfdttx.html