1)public String substring(int beginIndex)//该方法从beginIndex位置起,从当前字符串中取出剩余的字符作为一个新的字符串返回。 2)public String substring(int beginIndex, int endIndex)//该方法从beginIndex位置起,从当前字符串中取出到endIndex-1位置的字符作为一个新的字符串返回。 String str1 = new String(...
在Java中String是一个类,所以除了上面直接让String对象等于一个字符串之外,我们可以向普通的类一样,使用new创建一个String对象; 当我们使用第一种方法也就是String string = ”hello”;的时候,程序会在特定的内存中(专门保存字符串的内存)查找是否有”hello”这个字符串,如果没有则在这个内存区域创建一个”hello”...
publicclassMain{publicstaticvoidmain(String[]args){// 创建一个字符串Stringstr="Hello, World!";// 将字符串转换为字节数组byte[]bytes=str.getBytes();// 获取字节数组中的第一个字节bytefirstByte=bytes[0];// 输出第一个字节System.out.println("第一个字节是: "+firstByte);}} 1. 2. 3. 4. 5...