Follow Techotopia on Twitter

On-line Guides
All Guides
eBook Store
iOS / Android
Linux for Beginners
Office Productivity
Linux Installation
Linux Security
Linux Utilities
Linux Virtualization
Linux Kernel
System/Network Admin
Programming
Scripting Languages
Development Tools
Web Development
GUI Toolkits/Desktop
Databases
Mail Systems
openSolaris
Eclipse Documentation
Techotopia.com
Virtuatopia.com
Answertopia.com

How To Guides
Virtualization
General System Admin
Linux Security
Linux Filesystems
Web Servers
Graphics & Desktop
PC Hardware
Windows
Problem Solutions
Privacy Policy

  




 

 

Solaris Dynamic Tracing Guide
Previous Next

Assignment Operators

D provides the following binary assignment operators for modifying D variables. You can only modify D variables and arrays. Kernel data objects and constants may not be modified using the D assignment operators. The assignment operators have the same meaning as they do in ANSI-C.

Table 2-10 D Assignment Operators

=

set the left-hand operand equal to the right-hand expression value

+=

increment the left-hand operand by the right-hand expression value

-=

decrement the left-hand operand by the right-hand expression value

*=

multiply the left-hand operand by the right-hand expression value

/=

divide the left-hand operand by the right-hand expression value

%=

modulo the left-hand operand by the right-hand expression value

|=

bitwise OR the left-hand operand with the right-hand expression value

&=

bitwise AND the left-hand operand with the right-hand expression value

^=

bitwise XOR the left-hand operand with the right-hand expression value

<<=

shift the left-hand operand left by the number of bits specified by the right-hand expression value

>>=

shift the left-hand operand right by the number of bits specified by the right-hand expression value

Aside from the assignment operator =, the other assignment operators are provided as shorthand for using the = operator with one of the other operators described earlier. For example, the expression x = x + 1 is equivalent to the expression x += 1, except that the expression x is evaluated once. These assignment operators obey the same rules for operand types as the binary forms described earlier.

The result of any assignment operator is an expression equal to the new value of the left-hand expression. You can use the assignment operators or any of the operators described so far in combination to form expressions of arbitrary complexity. You can use parentheses ( ) to group terms in complex expressions.

Previous Next

 
 
  Published under the terms fo the Public Documentation License Version 1.01. Design by Interspire