29
loading...
This website collects cookies to deliver better user experience
phrase = Hello
phrase = "Hello"
number = 1234
number = "1234"
phrase = "Hello";
//and
number = "1234";
char[] ch = {'H','e','l','l','o'};
String st = new String(ch);
String st = "Hello";
String phrase = "Hello People";
public class StringDemo {
public static void main(String []args) {
String phrase = "Hello People";
System.out.println(phrase);
}
}
String phrase = new String("Hello People");
public class StringDemo {
public static void main(String []args) {
String phrase = new String("This one using new keyword");
System.out.println(phrase);
}
}