slovo | definícia |
decrement (encz) | decrement,pokles n: Zdeněk Brož |
Decrement (gcide) | Decrement \Dec"re*ment\, n. [L. decrementum, fr. decrescere. See
Decrease.]
1. The state of becoming gradually less; decrease;
diminution; waste; loss.
[1913 Webster]
Twit me with the decrements of my pendants. --Ford.
[1913 Webster]
Rocks, mountains, and the other elevations of the
earth suffer a continual decrement. --Woodward.
[1913 Webster]
2. The quantity lost by gradual diminution or waste; --
opposed to increment.
[1913 Webster]
3. (Crystallog.) A name given by Ha["u]y to the successive
diminution of the layers of molecules, applied to the
faces of the primitive form, by which he supposed the
secondary forms to be produced.
[1913 Webster]
4. (Math.) The quantity by which a variable is diminished.
[1913 Webster]
Equal decrement of life.
(a) The decrease of life in a group of persons in which
the assumed law of mortality is such that of a given
large number of persons, all being now of the same
age, an equal number shall die each consecutive year.
(b) The decrease of life in a group of persons in which
the assumed law of mortality is such that the ratio of
those dying in a year to those living through the year
is constant, being independent of the age of the
persons.
[1913 Webster] |
decrement (wn) | decrement
n 1: the amount by which something decreases [syn: decrease,
decrement] [ant: increase, increment]
2: a process of becoming smaller or shorter [syn: decrease,
decrement] [ant: growth, increase, increment] |
| podobné slovo | definícia |
decrement (encz) | decrement,pokles n: Zdeněk Brož |
decremental (encz) | decremental,dekrementální adj: Zdeněk Brož |
decremented (encz) | decremented,dekrementovaný adj: Zdeněk Broždecremented,snižovaný adj: Zdeněk Brož |
decrements (encz) | decrements,dekrementuje v: Zdeněk Broždecrements,snižuje v: Zdeněk Brož |
Equal decrement of life (gcide) | Decrement \Dec"re*ment\, n. [L. decrementum, fr. decrescere. See
Decrease.]
1. The state of becoming gradually less; decrease;
diminution; waste; loss.
[1913 Webster]
Twit me with the decrements of my pendants. --Ford.
[1913 Webster]
Rocks, mountains, and the other elevations of the
earth suffer a continual decrement. --Woodward.
[1913 Webster]
2. The quantity lost by gradual diminution or waste; --
opposed to increment.
[1913 Webster]
3. (Crystallog.) A name given by Ha["u]y to the successive
diminution of the layers of molecules, applied to the
faces of the primitive form, by which he supposed the
secondary forms to be produced.
[1913 Webster]
4. (Math.) The quantity by which a variable is diminished.
[1913 Webster]
Equal decrement of life.
(a) The decrease of life in a group of persons in which
the assumed law of mortality is such that of a given
large number of persons, all being now of the same
age, an equal number shall die each consecutive year.
(b) The decrease of life in a group of persons in which
the assumed law of mortality is such that the ratio of
those dying in a year to those living through the year
is constant, being independent of the age of the
persons.
[1913 Webster] |
decrement (wn) | decrement
n 1: the amount by which something decreases [syn: decrease,
decrement] [ant: increase, increment]
2: a process of becoming smaller or shorter [syn: decrease,
decrement] [ant: growth, increase, increment] |
contents of decrement part of register (foldoc) | Contents of Decrement part of Register
cdr
(cdr) /ku'dr/ or /kuh'dr/ The right-hand element of
a Lisp cons cell.
(2014-11-09)
|
decrement operator (foldoc) | increment operator
++
--
decrement operator
A programming language unary operator that
adds one to its operand. Similarly, a decrement operator
subtracts one from its operand.
In the B programming language and its many descendents
(e.g. C, Perl, Java), the increment operator is written
"++" and decrement "--". They can be either prefix or
postfix, both of which return a value as well as changing
their operand. The prefix form, e.g. ++x, increments
variable x before returning its value whereas postfix, x++,
returns x's original value before it was incremented.
The expression ++x is equivalent to the assignment operator,
x += 1. There is no simple corresponding equivalent for x++.
These expressions, ++x, x++, x += 1 are almost equivalent to
the long form x = x + 1 except that the latter involves two
references to x. In the case of a simple variable, this makes
no difference but the operand can be any lvalue (something
that can be assigned to), including a complex pointer
expression whose value changes each time it is evaluated.
If the operand is a pointer then incrementing it (in any of
the above ways) causes it to point to the next element of its
specified type.
The name of the programming language C++ is a humourous use
of the postfix increment operator to imply that C++ is "one
better than" C.
(2019-07-14)
|
|