I am create a String object as below
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?