What's wrong with the following code?
public class Main { public static void main(String args[]) { Boolean b = new Boolean("TRUE"); if (b) {/*from ww w . j a v a 2 s.com*/ for (Integer i = 0; i < 10; ++i) { System.out.println(i); } } } }
Click to view the answer
A