Reputation: 10021
if I have two variables
boolean k = true;
boolean m = false;
what does the following do;
k &= m;
Upvotes: 1
Views: 293
Reputation: 213391
That's the compound assignment operator, which is equivalent to:
k = (boolean)(k & m);
Upvotes: 5