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







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

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 在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 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
  • Change auto increment starting number? - Stack Overflow
    Yes, you can use the ALTER TABLE t AUTO_INCREMENT = 42 statement However, you need to be aware that this will cause the rebuilding of your entire table, at least with InnoDB and certain MySQL versions
  • 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(); …
  • Increment void pointer by one byte? by two? - Stack Overflow
    But some compilers like the GCC assume void to be of size 1 byte and a increment on a void pointer x will be equivalent to x + 1 To confirm this, I wrote a small program which is as follows #include<bits stdc++ h> using namespace std; int main(){ int x = 10; void* y = (void*) x; cout<<y<<endl; void *z = y; z++; cout<<(z)<<endl; cout<<(y+1
  • How to set auto increment primary key in PostgreSQL?
    If you want to do this in pgadmin, it is much easier It seems in postgressql, to add a auto increment to a column, we first need to create a auto increment sequence and add it to the required column I did like this 1) Firstly you need to make sure there is a primary key for your table
  • SQL Server add auto increment primary key to existing table
    This answer is a small addition to the highest voted answer and works for SQL Server The question requested an auto increment primary key, the current answer does add the primary key, but it is not flagged as auto-increment The script below checks for the columns, existence, and adds it with the autoincrement flag enabled
  • What is the difference between ++ and += 1 operators?
    There are two ++ operators, pre-increment (++n) and post-increment (n++) You only looked at post-increment Try your comparison with pre-incrment BTW, the recommended practice in C++ is to prefer pre-increment over post-increment when either of the two will do –
  • Can a for loop increment decrement by more than one?
    A for loop doesn't increment anything Your code used in the for statement does It's entirely up to you how if where when you want to modify i or any other variable for that matter





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

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