英文字典中文字典


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







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

increment    音标拼音: ['ɪnkrəmənt]
n. 增量
n. 增量,增加,增值

增量增量,增加,增值

increment
增值


increment
半增量


increment
递增时间

increment
增量

increment
n 1: a process of becoming larger or longer or more numerous or
more important; "the increase in unemployment"; "the growth
of population" [synonym: {increase}, {increment}, {growth}]
[ant: {decrease}, {decrement}]
2: the amount by which something increases; "they proposed an
increase of 15 percent in the fare" [synonym: {increase},
{increment}] [ant: {decrease}, {decrement}]

Increment \In"cre*ment\, n. [L. incrementum: cf. F.
incr['e]ment. See {Increase}.]
[1913 Webster]
1. The act or process of increasing; growth in bulk,
guantity, number, value, or amount; augmentation;
enlargement.
[1913 Webster]

The seminary that furnisheth matter for the
formation and increment of animal and vegetable
bodies. --Woodward.
[1913 Webster]

A nation, to be great, ought to be compressed in its
increment by nations more civilized than itself.
--Coleridge.
[1913 Webster]

2. Matter added; increase; produce; production; -- opposed to
{decrement}. "Large increment." --J. Philips.
[1913 Webster]

3. (Math.) The increase of a variable quantity or fraction
from its present value to its next ascending value; the
finite quantity, generally variable, by which a variable
quantity is increased.
[1913 Webster]

4. (Rhet.) An amplification without strict climax, as in the
following passage:
[1913 Webster]

Finally, brethren, whatsoever things are true,
whatsoever things are honest, whatsoever things are
just, whatsoever things are pure, whatsoever things
are lovely, whatsoever things are of good report, .
. . think on these things. --Phil. iv. 8.
[1913 Webster]

{Infinitesimal increment} (Math.), an infinitesimally small
variation considered in Differential Calculus. See
{Calculus}.

{Method of increments} (Math.), a calculus founded on the
properties of the successive values of variable quantities
and their differences or increments. It differs from the
method of fluxions in treating these differences as
finite, instead of infinitely small, and is equivalent to
the calculus of finite differences.
[1913 Webster]

89 Moby Thesaurus words for "increment":
access, accession, accessory, accompaniment, accretion, accrual,
accruement, accumulation, addenda, addendum, additament, addition,
additive, additory, additum, adjunct, adjuvant, advance,
aggrandizement, amplification, annex, annexation, appanage,
appendage, appendant, appreciation, appurtenance, appurtenant,
ascent, attachment, augment, augmentation, ballooning, bloating,
boom, boost, broadening, buildup, coda, complement, concomitant,
continuation, corollary, crescendo, development, edema, elevation,
enlargement, expansion, extension, extrapolation, fixture, flood,
gain, greatening, growth, gush, hike, increase, inflation, jump,
leap, mounting, multiplication, offshoot, pendant, productiveness,
proliferation, raise, reinforcement, rise, side effect, side issue,
snowballing, spread, supplement, surge, swelling, tailpiece,
tumescence, undergirding, up, upping, upsurge, upswing, uptrend,
upturn, waxing, widening


请选择你想看的字典辞典:
单词字典翻译
Increment查看 Increment 在百度字典中的解释百度英翻中〔查看〕
Increment查看 Increment 在Google字典中的解释Google英翻中〔查看〕
Increment查看 Increment 在Yahoo字典中的解释Yahoo英翻中〔查看〕





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


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

































































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


  • What is the difference between increment operator(++) and addition . . .
    Increment x; Return the temporary variable; Whereas pre-increment (++x) will do something like this: Increment x; Return x; So using pre-increment requires less operations than post-increment, but in modern day systems this usually makes no worthwile difference to be a decent way of optimising code
  • How to increment a pointer address and pointers value?
    *ptr++, the value is not incremented, the pointer is These unary operators have the same precedence but they are evaluated right-to-left The code means "take the contents from where ptr points at, then increment ptr" It is very common C code (and yes, quite confusing) Please correct this and I'll remove the downvote
  • How to create id with AUTO_INCREMENT on Oracle?
    or specify starting and increment values, also preventing any insert into the identity column (GENERATED ALWAYS) (again, Oracle 12c+ only) create table t1 ( c1 NUMBER GENERATED ALWAYS as IDENTITY(START with 1 INCREMENT by 1), c2 VARCHAR2(10) ); Alternatively, Oracle 12 also allows to use a sequence as a default value:
  • syntax - Python integer incrementing with ++ - Stack Overflow
    The main reason ++ comes in handy in C-like languages is for keeping track of indices In Python, you deal with data in an abstract way and seldom increment through indices and such The closest-in-spirit thing to ++ is the next method of iterators
  • c - What is the difference between ++i and i++? - Stack Overflow
    Pre-increment is always at least as efficient as post-increment: in fact post-increment usually involves keeping a copy of the previous value around and might add a little extra code As others have suggested, due to compiler optimisations many times they are equally efficient, probably a for loop lies within these cases
  • How does the increment operator work in an if statement?
    You yourself wrote: "x++ is post increment, this means that the value of x is used then it is incremented" Consider what that means: x is 0 The expression is evaluated, 0 is false, so the expression is false The post increment happens, changing x from 0 to 1 (After the expression was evaluated)
  • Most efficient way to increment a Map value in Java
    Remember the new AtomicLong passed to putIfAbsent and the return value of the method, followed by using the right one for the increment Of course, since Java 8 it’s even simpler to use map computeIfAbsent("foo", key -> new AtomicLong(0)) incrementAndGet(); …
  • Incrementing in C++ - When to use x++ or ++x? - Stack Overflow
    This may seem like pedantry (mainly because it is :) ) but in C++, x++ is a rvalue with the value of x before increment, x++ is an lvalue with the value of x after an increment Neither expression guarantees when the actual incremented value is stored back to x, it is only guaranteed that it happens before the next sequence point 'after
  • Auto increment primary key in SQL Server Management Studio 2012
    The MS SQL Server uses the IDENTITY keyword to perform an auto-increment feature In the example above, the starting value for IDENTITY is 1, and it will increment by 1 for each new record Tip: To specify that the "Personid" column should start at value 10 and increment by 5, change it to IDENTITY(10,5)
  • Python dictionary increment - Stack Overflow
    In Python it's annoying to have to check whether a key is in the dictionary first before incrementing it: if key in my_dict: my_dict[key] += num else: my_dict[key] = num Is there a shorter





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