英文字典中文字典


英文字典中文字典51ZiDian.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       







请输入英文单字,中文词皆可:

argument    音标拼音: ['ɑrgjəmənt]
n. 争论,辩论,争辩,争执

争论,辩论,争辩,争执

argument
引数


argument
变元


argument
引数

argument
引数

argument
n 1: a fact or assertion offered as evidence that something is
true; "it was a strong argument that his hypothesis was
true" [synonym: {argument}, {statement}]
2: a contentious speech act; a dispute where there is strong
disagreement; "they were involved in a violent argument"
[synonym: {controversy}, {contention}, {contestation},
{disputation}, {disceptation}, {tilt}, {argument}, {arguing}]
3: a discussion in which reasons are advanced for and against
some proposition or proposal; "the argument over foreign aid
goes on and on" [synonym: {argument}, {argumentation}, {debate}]
4: a summary of the subject or plot of a literary work or play
or movie; "the editor added the argument to the poem" [synonym:
{argument}, {literary argument}]
5: (computer science) a reference or value that is passed to a
function, procedure, subroutine, command, or program [synonym:
{argument}, {parameter}]
6: a variable in a logical or mathematical expression whose
value determines the dependent variable; if f(x)=y, x is the
independent variable
7: a course of reasoning aimed at demonstrating a truth or
falsehood; the methodical process of logical reasoning; "I
can't follow your line of reasoning" [synonym: {argumentation},
{logical argument}, {argument}, {line of reasoning}, {line}]

Argument \Ar"gu*ment\, n. [F. argument, L. argumentum, fr.
arguere to argue.]
1. Proof; evidence. [Obs.]
[1913 Webster]

There is.. no more palpable and convincing argument
of the existence of a Deity. --Ray.
[1913 Webster]

Why, then, is it made a badge of wit and an argument
of parts for a man to commence atheist, and to cast
off all belief of providence, all awe and reverence
for religion? --South.
[1913 Webster]

2. A reason or reasons offered in proof, to induce belief, or
convince the mind; reasoning expressed in words; as, an
argument about, concerning, or regarding a proposition,
for or in favor of it, or against it.
[1913 Webster]

3. A process of reasoning, or a controversy made up of
rational proofs; argumentation; discussion; disputation.
[1913 Webster]

The argument is about things, but names. --Locke.
[1913 Webster]

4. The subject matter of a discourse, writing, or artistic
representation; theme or topic; also, an abstract or
summary, as of the contents of a book, chapter, poem.
[1913 Webster]

You and love are still my argument. --Shak.
[1913 Webster]

The abstract or argument of the piece. --Jeffrey.
[1913 Webster]

[Shields] with boastful argument portrayed.
--Milton.
[1913 Webster]

5. Matter for question; business in hand. [Obs.]
[1913 Webster]

Sheathed their swords for lack of argument. --Shak.
[1913 Webster]

6. (Astron.) The quantity on which another quantity in a
table depends; as, the altitude is the argument of the
refraction.
[1913 Webster]

7. (Math.) The independent variable upon whose value that of
a function depends. --Brande & C.
[1913 Webster]


Argument \Ar"gu*ment\ ([a^]r"g[-u]*ment), v. i. [L.
argumentari.]
To make an argument; to argue. [Obs.] --Gower.
[1913 Webster]

243 Moby Thesaurus words for "argument":
Kilkenny cats, action, addend, affray, altercation, anagnorisis,
angle, answer, antilogarithm, apologetics, apologia, apology,
architectonics, architecture, argumentation, argumentum, assertion,
atmosphere, background, barney, base, basis, bicker, bickering,
binomial, blood feud, brawl, broil, case, casuistry,
cat-and-dog life, catastrophe, characteristic, characterization,
claim, coefficient, color, combat, combination, complement,
complication, conflict, congruence, cons, consideration, constant,
contention, contentiousness, contest, contestation, continuity,
contrivance, controversy, cosine, cotangent, counterstatement,
cube, cut and thrust, debate, decimal, defence, defense, demurrer,
denial, denominator, denouement, derivative, design, determinant,
development, device, difference, differential, disagreement,
discriminate, disputation, dispute, dissension, dividend, divisor,
donnybrook, donnybrook fair, e, elenchus, embroilment, enmity,
episode, equation, evidence, exception, exponent, exponential,
fable, factor, falling action, falling-out, feud, fight, fighting,
fliting, flyting, formula, foundation, fracas, fray, function,
fuss, gimmick, ground, hassle, head, hostility, hubbub, hurrah, i,
ignoratio elenchi, imbroglio, incident, increment, index, integral,
line, litigation, local color, logic, logomachy, matrix, matter,
minuend, mood, motif, motive, movement, multiple, multiplier,
mythos, norm, numerator, objection, open quarrel, paper war,
parameter, passage of arms, peripeteia, permutation, pi, plaidoyer,
plan, plea, pleading, pleadings, plot, point, polemic, polemics,
polynomial, position, posture, power, proof, proposition, pros,
pros and cons, quarrel, quarreling, quarrelsomeness, quaternion,
quotient, radical, radix, reason, rebuttal, reciprocal,
recognition, refutation, remainder, reply, response, rhubarb,
riposte, rising action, root, row, rumpus, scheme, scrap,
scrapping, secant, secondary plot, set-to, sharp words, sine,
slanging match, slant, snarl, spat, special demurrer,
special pleading, squabble, squabbling, stance, standpoint,
statement, statement of defense, story, strife, structure,
struggle, subject, subject matter, submultiple, subplot,
subtrahend, summation, summing up, switch, talking point, tangent,
tensor, testimony, text, thematic development, theme, thesis, tiff,
tone, topic, tussle, twist, variable, vector, vendetta,
verbal engagement, versine, war, war of words, warfare, wherefore,
why, whyfor, words, wrangle, wrangling

(Or "arg") A value or reference passed to a
{function}, {procedure}, {subroutine}, command or program, by
the caller. For example, in the function definition

square(x) = x * x

x is the {formal argument} or "parameter", and in the call

y = square(34)

34 is the {actual argument}. This will execute the function
square with x having the value 7 and return the result 49.

There are many different conventions for passing arguments to
functions and procedures including {call-by-value},
{call-by-name}, {call-by-reference}, {call-by-need}. These
affect whether the value of the argument is computed by the
caller or the callee (the function) and whether the callee can
modify the value of the argument as seen by the caller (if it
is a variable).

Arguments to functions are usually, following mathematical
notation, written in parentheses after the function name,
separated by commas (but see {curried function}). Arguments
to a program are usually given after the command name,
separated by spaces, e.g.:

cat myfile yourfile hisfile

Here "cat" is the command and "myfile", "yourfile", and
"hisfile" are the arguments.

(2006-05-27)



安装中文字典英文字典查询工具!


中文字典英文字典工具:
选择颜色:
输入中英文单字

































































英文字典中文字典相关资料:


  • 编程中,parameter、argument翻译成什么中文最好? - 知乎
    Argument 和 Parameter 两个词在很多文献中均翻译为参数,这是一个历史遗留问题。 但实际上 Argument 专用于 Actual Argument(实际参数,实参),Parameter 专用于 Formal Parameter(形式参数,形参)。 在上下文没有歧义的情况下,我个人的习惯会将这两个词均翻译为参数,在其他情况下使用实参和形参来对
  • 为什么argument在计算机科学里面是参数的意思? - 知乎
    首先看看什么是argument In logic and philosophy, an argument is a series of statements (in a natural language), called the premises or premisses (both spellings are acceptable), intended to determine the degree of truth of another statement, the conclusion
  • c# - CA1873 Evaluation of this argument may be expensive and . . .
    I'm in the process of upgrading to NET 10 and I ran into to this compiler suggestion: CA1873 Evaluation of this argument may be expensive and unnecessary if logging is disabled It references to
  • 学术论文中,argument,thesis和thesis statement之间有什么区别?
    Write a response in which you discuss what specific evidence is needed to evaluate the argument and explain how the evidence would weaken or strengthen the argument [解析]: 我们先看看这道题的推理图:evidence有3个,assumption有4个,结论是Palean篮子不是Palean独有的。
  • 知乎 - 有问题,就会有答案
    本人在学习Python时遇到了一个问题,其实上翻译上的问题。有一课程的标题是parameters and arguments,按…
  • argue的名词形式究竟是argument还是arguememt? - 知乎
    知乎,中文互联网高质量的问答社区和创作者聚集的原创内容平台,于 2011 年 1 月正式上线,以「让人们更好的分享知识、经验和见解,找到自己的解答」为品牌使命。知乎凭借认真、专业、友善的社区氛围、独特的产品机制以及结构化和易获得的优质内容,聚集了中文互联网科技、商业、影视
  • What does the argument mean in fig. add_subplot (111)?
    What does the argument mean in fig add_subplot (111)? Asked 15 years, 7 months ago Modified 1 year, 10 months ago Viewed 561k times





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