interface是什么意思,interface的中文翻译,含义,读音发音,用法,造句,参考例句
英语频道小编Jastine整理了英语单词interface的学习资料,关于interface是什么意思这个问题进行了详细的讲解,包括interface的英语意思解释、正确音标读音及发音、用法,interface的英文短句例句含义讲解等与英文单词interface相关的信息。
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的文件夹.
英英释义行业释义网络释义noun1.(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)
冶金学1.界面
力学1.界面
化学1.界面
医学1.界面:化学上指异相体系中两相之间的界面
物理学1.界面
生态学1.界面
2. 又称“接触面”。两个或多个不同物相之间的分界面。如气/水界面。
电子学1.接口
电工1.接口
自动化1.界面
通信1.接口
2. 由两侧特性所定义的共享边界。接口可以在物理级、在软件级或作为纯逻辑运算来描述。
-interface1 . 界面
...机器的互动过程(Human Machine Interaction)中(有一个层面)即我们所说的界面(interface),从心理学意义来分(界面可分为感觉)视觉(触觉)听觉等(和情感两个层次,用户界面设计是屏幕产品的重要组成部分,界面设计是一个复杂的有不同学科参与的工程)认知心理学(设计学)语言学等在此.
2 . 接口
...为了达到这个目标,OOD要求将程序分成块,每个块的规模应该小到可以管理的程度,然后分别将各个块隐藏在接口,interface,的后面,让它们只通过接口相互交流,比如说,如果用OOD的方法来设计一个服务器-客户端.
3 . 界面的
interface界石, interface界面的, interface界面层
4 . 接口的
as a phase-one starting point , bear in mind the signal-source , -line , and-client attributes for each interface.作为阶段一的起始点,记住每个接口的信号源、线和客户端的特性。
相关词条+interface interface1 . 界面来
when booting with GRUB , you can use either a command-line interface line interface , or a menu interface interface ) .我们可以通过GRUB的命令行界面或菜单界面来启动系统。
+interfaces , and interface1 . 在界面
reinforcement and concrete bear loads together by bonding on their interfaces , and interface stress is a discontinuous medium-related mechanical problem .钢筋与混凝土主要通过界面黏结作用来共同承受荷载,在界面上的受力属于不连续介质的力学问题。
+a menu interface interface1 . 菜单界面
when booting with GRUB , you can use either a command-line interface Commandinterface , or a menu interface interface ) .我们可以通过GRUB的命令行界面或菜单界面来启动系统。
+set interface interface - id1 . 将接口绑定
set interface interface - id zone zone - name ., 将接口绑定到区段.
百科interface是面向对象编程语言中接口操作的关键字,功能是把所需成员组合起来,以封装一定功能的集合。它好比一个模板,在其中定义了对象必须实现的成员,通过类或结构来实现它。接口不能直接实例化,即ICount ic=new iCount()是错的。接口不能包含成员的任何代码,只定义成员本身。接口成员的具体代码由实现接口的类提供。接口使用interface关键字进行声明。