当前位置:  技术问答>java相关

面向对象的程序设计中"接口"是个什么概念,怎么使用?在UML中怎么表示?

    来源: 互联网  发布时间:2017-03-30

    本文导语:  如题.. | 在国外的一个论坛上看到一个关于抽象类和接口比较的帖子,其中有一篇感觉很有道理: Interface versus Class Inheritance is pretty easy once you understand it.  There is a very easy way to ...

如题..

|
在国外的一个论坛上看到一个关于抽象类和接口比较的帖子,其中有一篇感觉很有道理:

Interface versus Class Inheritance is pretty easy once you understand it. 

There is a very easy way to distinguish the 2. 

Class inheritance = implemenation inheritance. 
What this means is that if you have a base object you inherit from, your new derived object will either contain or override the existing functionality of the base object. This is often referred to as "is a" relationship. 

A Beagle IS A Dog. 


Interface inheritance is a little different. It is basically like a contract and is usually referred to as a "has a" relationship. By agreeing to implement an interface, you agree to implement all of its members, and provide your own implementation. An Interface should describe what a class does, rather than what a class is. 

A Beagle Has A Bark 

One reason to use Interfaces over Implementations is versioning or upgradability. 
Any changes you make to your base class (abstract class) could possibly break subclasses that are derived from that class. By implementing interfaces you alleviate this problem by allowing clients or code to have multiple interfaces. By using interfaces, subclass can only see its parents interface, not the implementation. 


|
接口继承:
描述一种has a的关系。接口只是告诉你这个接口有这个能力,而没有具体提供实现。

类继承:
描述一种is a的关系。类继承的时间不光继承接口还继承实现。


|
接口就是定义了一个类所能够接受的请求内容,规范了你能够对
该对象发出的请求。
在UML图中,接口就是方格中得public和protected的成员函数。
public接口可以接受所有外界的请求,
protected接口只能够接受该对象的继承者的请求

|
对C++来说,接口就是抽象基类.
对java来说,接口就是Interface.

主要用来隔离client和具体实现,使得系统更容易扩展

|
接口实质上就是对象访问协议,你必须按照接口的规定来访问对象。

|
同意楼上,感觉用接口跟类比较就能更好的理解。

    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 面向对象能完全取代面向过程吗?
  • linux下的编程主旨思想是在面向过程还是面向对象的?谢谢!!
  • 有人问我:何为面向对象编程?我给不出确切或形象的说法。谢!vb、pb等开发工具是不是面向对象编程的语言。
  • Glib对象系统(也称为"GObject")内部是如何实现面向对象特征的呢?
  • 面向对象数据库引擎 ojadb
  • 面向对象的网络开发包 ACE
  • 面向对象数据技术 Apache OODT
  • 面向对象的API OpenStep
  • 面向对象的脚本语言 Bento
  • 面向对象的脚本语言 ObjectScript
  • 面向对象的数据库系统 EyeDB
  • 帮帮新手,jsp面向对象吗?想把c/s结构的引用用jsp改写,交互功能可以实现吗
  • 面向对象的Tcl iTcl
  • 面向对象开发环境 Cocoa
  • PHP 面向对象框架 onPHP
  • 面向对象Ajax框架 Zaxas
  • javascript的面向对象编程 JS.Class
  • 面向对象的 JavaScript 库 QuoJS
  • 面向对象的JS框架 MooTools
  • 请大家帮忙推荐几本关于操作系统、面向对象的书!
  • 网络技术 iis7站长之家
  • 面向组合编程框架 Qi4j
  • 面向Agent编程框架 SObjectizer
  • 面向服务的核心架构 Tuscany
  • 面向方面的框架 AspectJ
  • 面向新手的终端辅助工具 Clicompanion
  • 面向對象C語言編程框架 LW_OOPC
  • C++面向方面框架 Aspect C++
  • 面向移动终端的KISSY​瘦身版 KISSY MINI
  • 大家有谁听说过面向Linux的PlayStation平台?
  • Eclipse面向方面建模插件 A2Eclipse


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3