夜色资源站www国产在线资源,国产偷窥熟妇高潮呻吟,潮湿的心动漫在线观看免费未删减,欧美日韩国产成人精品

熱門搜索: apple estimate atom 螞蟻

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