提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
如何创建和使用Java String对象。
/** 时 代 J a v a 公 众 号 - N o w J a v a . c o m 提供 **/ public class Main { public static void main(String args[]){ /* creates new empty string */ String str1 = new String(""); String str2 = new String("Hello world"); String str3 = "Hello Wolrd"; System.out.println( str1.length()); } }