public class Foo { public static void main(String[] args) { String strValue="ABCDEFG"; strValue.substring(3); strValue.concat("123");//以上这两个方法并没有返回值哦你可以修改为strValue=strValue.substring(3); strValue=strValue.concat("123");便可以了 System.out.println("result=" + strValue); String value = new String ("ABCDEFG"); System.out.println(strValue== value); // ture } }
|