Preincrement
Translation of "preincrement" into Russian
preincrement
NounUK
/priːˈɪnkrɪmənt/
US
/priˈɪnkrəˌmɛnt/
preincrement
preincrements pl
The preincrement operator increases the value of a variable before it is used in an expression.
Оператор прединкремента увеличивает значение переменной до того, как она используется в выражении.
Definitions
preincrement
NounUK
/priːˈɪnkrɪmənt/
US
/priˈɪnkrəˌmɛnt/
An operation in programming where a variable is increased by one before its value is used in an expression.
In the expression ++x, the preincrement operation increases the value of x before it is used in the calculation.
preincrement
VerbUK
/priːˈɪnkrɪmənt/
US
/priˈɪnkrəˌmɛnt/
To increase the value of a variable by one before its current value is used in an expression.
The compiler preincrements the pointer before evaluating the condition.
preincrement
AdjectiveUK
/priːˈɪnkrɪmənt/
US
/priˈɪnkrəˌmɛnt/
Relating to or characteristic of a preincrement operation.
A preincrement operator applies the increment before the variable is read.
Idioms and phrases
preincrement operator
Use the preincrement operator to increase the value before evaluation.
оператор преинкремента
Используйте оператор преинкремента, чтобы увеличить значение до вычисления.
apply a preincrement
You should apply a preincrement in this loop to avoid logical errors.
применять преинкремент
Следует применять преинкремент в этом цикле, чтобы избежать логических ошибок.
preincrement expression
A preincrement expression changes the variable before returning the value.
выражение с преинкрементом
Выражение с преинкрементом изменяет переменную перед возвратом значения.
effect of preincrement
The effect of preincrement on the variable should be considered when debugging.
эффект преинкремента
Следует учитывать эффект преинкремента на переменную при отладке.
use of preincrement
The use of preincrement is common in C++ programming.
использование преинкремента
Использование преинкремента распространено в программировании на C++.