I have a problem wit the following code of java
- by Sanjeev
public class b {
public static void main(String[] args) {
byte b = 1;
long l = 127;
// b = b + l; // 1 if I try this then its not compile
b += l; // 2 if I try this its compile
System.out.println(b);
}
}
I don't understand why b=b+1; is not compile
and if I write b+=l; then it compile an run.