在java中字串的實例化有兩種方式,分別是:
1、直接賦值
String str = "Hello World";
2、建構方法實例化
String str = new String("Hello World");
(影片教學推薦:java影片)
具體實例:
//直接赋值 public class StringDemo{ public static void main(String[] args) { String str1 = "Hello qty"; String str2 = "Hello qty"; } } //构造方法实例化 public class StringDemo{ public static void main(String[] args) { String str1 = new String("Hello qty"); } }
推薦教學:java入門程式
以上是java中如何定義字串的詳細內容。更多資訊請關注PHP中文網其他相關文章!