Revision [12369]

This is an old revision of KeyPgOpCombineAdd made by JeffMarshall on 2008-01-18 14:18:35.

 

Operator += (Add and Assign)


Adds and assigns a value to a variable

Syntax:
Usage:
lhs += rhs

Parameters:
lhs
The variable to assign to.
T1
Any numeric type.
rhs
The value to add to lhs.
T2
Any numeric type.
T
Any data type.

Description:
This operator adds and assigns a value to a variable. It is functionally equivalent to:
lhs = lhs KeyPgOpAdd + rhs
For numeric types, the right-hand side expression (rhs) will be converted to the left-hand side type (T1).
For string types, this operator is functionally equivalent to KeyPgOpCombineConcat Operator &= (Concatenate and assign).
This operator can be overloaded for user-defined types.

Examples:
Dim n As Double
n = 6
n += 1
Print n
Sleep

Output:
7


Dialect Differences:
Differences from QB:
See also:
Back to Assignment Operators
Back to Operators
Valid XHTML :: Valid CSS: :: Powered by WikkaWiki



sf.net phatcode