Hi.....................
Ques: I am create a String object as below ...........
String str = "abc"; & String str = new String("abc"); Why can not a button object be created as : Button bt = "abc"? Why is it compulsory to create a button object as: Button bt = new Button("abc"); Why this is not compulsory in String's case?
Loading

VulpesPosted Dec 7, 2011, 12:08 PM