The following code sample prints 1.5.
float a = 3;
float b = 2;
a /= b;
System.out.println(a);
I don’t understand what the /= operator does. What is it supposed to represent?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It’s a combination division-plus-assignment operator.
means divide
abyband put the result ina.There are similar operators for addition, subtraction, and multiplication:
+=,-=and*=.%=will do modulus.>>=and<<=will do bit shifting.