英文字典中文字典Word104.com



中文字典辭典   英文字典 a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z   







請輸入英文單字,中文詞皆可:

define    音標拼音: [dɪf'ɑɪn]
vt. 定義,解釋,下定義,限定,規定

定義,解釋,下定義,限定,規定

define
界定; 設定


define
預先定義的

define
定義

define
v 1: determine the essential quality of [synonym: {specify},
{define}, {delineate}, {delimit}, {delimitate}]
2: give a definition for the meaning of a word; "Define
`sadness'"
3: determine the nature of; "What defines a good wine?"
4: show the form or outline of; "The tree was clearly defined by
the light"; "The camera could define the smallest object"
[synonym: {define}, {delineate}]
5: decide upon or fix definitely; "fix the variables"; "specify
the parameters" [synonym: {specify}, {set}, {determine},
{define}, {fix}, {limit}]

Define \De*fine"\, v. t. [imp. & p. p. {Defined}; p. pr. & vb.
n. {Defining}.] [OE. definer, usually, to end, to finish, F.
d['e]finir to define, L. definire to limit, define; de-
finire to limit, end, finis boundary, limit, end. See
{Final}, {Finish}.]
1. To fix the bounds of; to bring to a termination; to end.
"To define controversies." --Barrow.
[1913 Webster]

2. To determine or clearly exhibit the boundaries of; to mark
the limits of; as, to define the extent of a kingdom or
country.
[1913 Webster]

3. To determine with precision; to mark out with
distinctness; to ascertain or exhibit clearly; as, the
defining power of an optical instrument.
[1913 Webster]

Rings . . . very distinct and well defined. --Sir I.
Newton.
[1913 Webster]

4. To determine the precise signification of; to fix the
meaning of; to describe accurately; to explain; to expound
or interpret; as, to define a word, a phrase, or a
scientific term.
[1913 Webster]

They define virtue to be life ordered according to
nature. --Robynson
(More's
Utopia).
[1913 Webster]


Define \De*fine"\, v. i.
To determine; to decide. [Obs.]
[1913 Webster]

159 Moby Thesaurus words for "define":
assign, baptize, be characteristic, bed, blaze, blaze a trail,
blemish, blotch, bound, brand, call, chalk, chalk up, characterize,
check, check off, christen, cicatrize, circle in, circumscribe,
clarify, confirm, construe, dapple, dash, deep-dye, delimit,
delimitate, delineate, demarcate, denominate, describe, designate,
detail, determine, diagnose, differentiate, discolor, distinguish,
dot, dub, earmark, edge, embed, enclose, engraft, engrave, entitle,
entrench, establish, etch, explain, expound, fix, fleck, found,
freckle, gash, ground, hatch, hem, identify, impact, implant,
impress, imprint, infix, ingrain, inscribe, interpret, jam,
keynote, label, lay down, lay off, limit, line, lodge, make a mark,
margin, mark, mark boundaries, mark off, mark out,
mark the periphery, mottle, name, nick, nickname, nominate, notch,
outline, pack, pencil, pepper, plant, point, prick, print, punch,
punctuate, puncture, read, read into, riddle, rim, root, rope off,
scar, scarify, score, scotch, scratch, seal, seam, seat, set,
set apart, set down, set in, set the limit, set the pace,
set the tone, settle, skirt, sound the keynote, specify, speck,
speckle, spell out, splotch, spot, stain, stake out, stamp, state,
stereotype, stigmatize, streak, striate, stripe, style, surround,
tag, take, take it that, take to mean, tattoo, term, tick,
tick off, title, trace, underline, underscore, understand,
understand by, verge, wedge

請選擇你想看的字典辭典:
單詞字典翻譯
Define查看 Define 在Google字典中的解釋Google英翻中〔查看〕
Define查看 Define 在Yahoo字典中的解釋Yahoo英翻中〔查看〕





安裝中文字典英文字典查詢工具!


中文字典英文字典工具:
選擇顏色:
輸入中英文單字

































































英文字典中文字典相關資料:
  • c++ - What does ## in a #define mean? - Stack Overflow
    In other words, when the compiler starts building your code, no #define statements or anything like that is left A good way to understand what the preprocessor does to your code is to get hold of the preprocessed output and look at it
  • Is it possible to use a if statement inside #define?
    As far as I know, what you're trying to do (use if statement and then return a value from a macro) isn't possible in ISO C but it is somewhat possible with statement expressions (GNU extension) Since #define s are essentially just fancy text find-and-replace, you have to be really careful about how they're expanded I've found that this works on gcc and clang by default:
  • What is the difference between #define and const? [duplicate]
    The difference is that #define is processed by the preprocessor doing what amounts to simple text replacement Const values defined like this are not visible for the actual compiler, while a variable defined with the const modifier is an actual typed "variable" (well not really that variable) The disadvantage of #define is that is replaces every occurence of the name, while const variables
  • Difference between `constexpr` and `#define` - Stack Overflow
    So I read the interesting answers about what are the differences between constexpr and const but I was curious about are the differences between #define and constexpr ? I feel like constexpr is jus
  • What is the purpose of the #define directive in C++?
    0 in C or C++ #define allows you to create preprocessor Macros In the normal C or C++ build process the first thing that happens is that the PreProcessor runs, the preprocessor looks though the source files for preprocessor directives like #define or #include and then performs simple operations with them
  • Why do most C developers use define instead of const?
    In many programs, a #define serves the same purpose as a constant For example #define FIELD_WIDTH 10 const int fieldWidth = 10; I commonly see the first form preferred over the other, relying o
  • c++ - static const vs. #define - Stack Overflow
    Is it better to use static const variables than #define preprocessor? Or does it maybe depend on the context? What are advantages disadvantages for each method?
  • Array format for #define (C preprocessor) - Stack Overflow
    Array format for #define (C preprocessor) Asked 13 years, 1 month ago Modified 4 years, 7 months ago Viewed 96k times
  • How to declare variable and use it in the same Oracle SQL script?
    I want to write reusable code and need to declare some variables at the beginning and reuse them in the script, such as: DEFINE stupidvar = 'stupidvarcontent'; SELECT stupiddata FROM stupidtable
  • What is the scope of a #define? - Stack Overflow
    What is the scope of a #define? I have a question regarding the scope of a #define for C C++ and am trying to bet understand the preprocessor Let's say I have a project containing multiple sour





中文字典-英文字典  2005-2009

|中文姓名英譯,姓名翻譯 |简体中文英文字典