define是什么意思,define的中文翻译,含义,读音发音,用法,造句,参考例句
英语频道小编cassie整理了英语单词define的学习资料,关于define是什么意思这个问题进行了详细的讲解,包括define的英语意思解释、正确音标读音及发音、用法,define的英文短句例句含义讲解等与英文单词define相关的信息。
define
英[dɪˈfaɪn]美[dɪˈfaɪn]vt.规定;使明确;精确地解释;画出…的线条vi.(给词、短语等)下定义,构成释义
网络定义;去边;解释;下定义
词形变化:
过去式:defined 过去式:defined 过去式:defining 过去式:defines
派生词:definable definer
双语例句同反义词更多资料
1 . Please listen while I define your duties.
在我规定你的职责时,请仔细听好.
来自《简明英汉词典》
2 . Please define the words.
请准确地解释这些字的意义.
来自《简明英汉词典》
3 . It's hard to define exactly what has changed.
很难解释清楚到底发生了什么变化.
来自《简明英汉词典》
4 . In DPPX, to create a profile for a resource with the DEFINE command.
在分布处理编程执行(DPPX)中, 用DEFINE命令建立对某一资源的需求.
来自辞典例句
5 . In DPPX, to a profile for a resource with the DEFINE command.
在分布处理编程执行(DPPX)中, 用define命令建立对某一资源的需求.
来自互联网
同义词vt.1.确定界线,限定范围”释义下的同义词 establish set fix outline limit circumscribe 2.解释,使明确”释义下的同义词 describe clarify explain 语源late Middle English (also in the sense bring to an end): from Old French definer, from a variant of Latin definire, from de-(expressing completion) + finirefinish (from finisend)英英释义行业释义网络释义vern1.give a definition for the meaning of a word;
Define `sadness'
2.determine the essential quality of
3.determine the nature of;
What defines a good wine?
4.delineate the form or outline of;
The tree was clearly defined by the light
体育1.解说
2. 下定义
法律1.给…下定义
-define1 . 定义
Unit)中定义(define)函数、类型、类对象等,在另一处翻译单元引用它们。编译器(Compiler)处理完所有翻译单元后,链接.
2 . 去边
主题:[转帖]Photoshop菜单中英对照 ... 26.Matting Define 去边>
3 . 解释
在你制作你的,由围绕著‘有相互连结的’和‘不规则的现象’而组织起来的笔记时,开始去解释(define)〝人类仪具〞的结构,就好像一个人在制作一幅身体、情绪、心智和〝遗传心智〞之间的互动关系图时会做的那样.
4 . 下定义
...素,制约条件):con(反对地)+strain(紧张,拉紧,血统)+t,反对地拉紧他的“强制因素”。32、 define(解释,给…下定义):de+fine(美好的,好的),得到美好的“解释”。33、 goal(目的,目标):够到了“目标”。.
相关词条+defined1 . 定义的
method invocation appears to be independent of the number of methods defined in the class because I added 10 more methods to the test class ( before and after the test method ) with no change in performance .方法调用看来与类中定义的方法的数量无关,因为我(在测试方法之前和之后都)添加了10个方法,但性
2 . 界定
If love is defined as a confused , then certainly wanted to take a sober ., 如果把爱界定为一种糊涂 , 那麽失恋肯定是一种清醒.
+definable1 . 可定义的
definability 可定义性definable 可定义的define 定义
+defining boundary , defining1 . 定义边界
the abecedarian discusses the application of GIS in defining boundary , defining initializing condition , data pretreatment , model calculating , and visual result exporting , etc .初步探讨了GIS技术在大气质量模型建模过程中在定义边界和初始条件、数据准备、模型运行处理、可视化结果表现等方面的应用。
+definability1 . 可定义性
deficient number 靠definability 可定义性definable 可定义的
百科#define中的 #与## #define GPEBLT_FUNCNAME(basename) (SCODE (GPE::*)(struct GPEBltParms *))&GPE::##basename 在#define中,标准只定义了#和##两种操作。#用来把参数转换成字符串,##则用来连接两个前后两个参数,把它们变成一个字符串。 #include <stdio.h> #define paster( n ) printf( "token " #n" = %d ", token##n ) int main() { int token9=10; paster(9); return 0; } 输出为[leshy