Explain This Code Please: - Programming - Nairaland
Nairaland Forum › Science/Technology › Programming › Explain This Code Please: (902 Views)
1 Reply
| Explain This Code Please: by saragondla(op): 5:42am On Nov 24, 2009 |
public class B { public int add() { return 011; } public static void main(String[] args) { B b1=new B(); //System.out.println(!new Boolean(false)); System.out.println(b1.add()); } here output will give :9 . how it will come like this please explain me any one, } |
| Re: Explain This Code Please: by logica(m): 7:46am On Nov 24, 2009 |
The int value 011 represents an octal value. In Java, any integral value that starts with 0 is assumed to be in the octal system (base- . Please go read about literal values in Java. 011 converted to the standard decimal (base-10) is 9, which is the default numerical system except otherwise specified, therefore 9 is printed. |
5,000 Naira For Someone Who Can Reverse This Code • Need Help With This Code • Please Help With These Code Please • 2 • 3 • 4
Trying To Insert Fields Into Input • How Well Do You Understand And Write Your Local Language? • Class/meta Class
. Please go read about literal values in Java. 011 converted to the standard decimal (base-10) is 9, which is the default numerical system except otherwise specified, therefore 9 is printed.