1、介绍
java字符串可以通过字面量直接创建,也可以通过new关键字创建。这两种方法在存储上存在差异,但是都可以视为String对象,调用String类方法。
String s = "hello, world" String s = new String("hello, abc");
2、String类