28.08.2016 Views

scala_tutorial

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

Scala<br />

4 Multiply AND assignment operator, It multiplies right operand with the left<br />

operand and assign the result to left operand<br />

Ex: C *= A is equivalent to C = C * A<br />

/= (Divide and Assignment)<br />

5<br />

Divide AND assignment operator, It divides left operand with the right operand<br />

and assign the result to left operand<br />

Ex: C /= A is equivalent to C = C / A<br />

%= (Modulus and Assignment)<br />

6<br />

Modulus AND assignment operator, It takes modulus using two operands and<br />

assign the result to left operand<br />

Ex: C %= A is equivalent to C = C % A<br />

> 2<br />

&= (Bitwise AND assignment)<br />

9<br />

Bitwise AND assignment operator<br />

Ex: C &= 2 is same as C = C & 2<br />

^= (bitwise exclusive OR and assignment)<br />

10<br />

bitwise exclusive OR and assignment operator<br />

Ex: C ^= 2 is same as C = C ^ 2<br />

|= (bitwise inclusive OR and assignment)<br />

11<br />

bitwise inclusive OR and assignment operator<br />

Ex: C |= 2 is same as C = C | 2<br />

43

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!