热门搜索: apple estimate atom 蚂蚁

interface

[ˈɪntəfeɪs][ˈɪntərfeɪs]
n.界面;接口;交界面
v.(使通过界面或接口)接合,连接;[计算机]使联系
vi.相互作用(或影响);交流,交谈
网络界面;接口;界面的;接口的
词形变化:
复数interfaces   复数interfaced   复数interfaced   复数interfacing   复数interfaces  
双语例句

1 . The different components all have to interface smoothly.

不同的部件都必须能顺利接合。

来自柯林斯例句

2 . The system uses an impressive graphical interface .

这一系统采用了特别好的图形界面。

来自《权威词典》

3 . the interface between computer and printer

计算机和打印机之间的接口

来自《权威词典》

4 . The client code can assume an interface will never change.

客户端的代码可以假定interface永远不变.

来自互联网

5 . Inside the Interface directory, create a directory named Addons.

进入Interface文件夹, 创建一个Addons的文件夹.

来自互联网

英英释义 行业释义 网络释义
noun

1.(chemistry) a surface forming a common boundary between two things (two objects or liquids or chemical phases)

2.(computer science) a program that controls a display for the user (usually on a computer monitor) and that allows the user to interact with the system

3.the overlap where two theories or phenomena affect each other or have links with each other;

the interface between chemistry and biology

4.(computer science) computer circuit consisting of the hardware and associated circuitry that links one device with another (especially a computer and a hard disk drive or other peripherals)

百科

interface是面向对象编程语言中接口操作的关键字,功能是把所需成员组合起来,以封装一定功能的集合。它好比一个模板,在其中定义了对象必须实现的成员,通过类或结构来实现它。接口不能直接实例化,即ICount ic=new iCount()是错的。接口不能包含成员的任何代码,只定义成员本身。接口成员的具体代码由实现接口的类提供。接口使用interface关键字进行声明。