您可以通过以下方式创建字符串:
将包装在“”中的字符串值分配给String类型变量。
String message = "Hello Welcome to Nhooo";
通过将字符串值作为其构造函数的参数传递,使用new关键字创建String类的对象。
String message = new String ("Hello Welcome to Nhooo");
将字符数组传递给String构造函数。
char arr[] = {'H','e','l','l','o'}; String message = new String(arr);