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命令建立对某一资源的需求.

来自互联网

英英释义 行业释义 网络释义
vern

1.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

百科

#define中的 #与## #define GPEBLT_FUNCNAME(basename) (SCODE (GPE::*)(struct GPEBltParms *))&GPE::##basename 在#define中,标准只定义了#和##两种操作。#用来把参数转换成字符串,##则用来连接两个前后两个参数,把它们变成一个字符串。 #include <stdio.h> #define paster( n ) printf( "token " #n" = %d\n ", token##n ) int main() { int token9=10; paster(9); return 0; } 输出为[leshy