1、字符串处理
- 求子串。HelloWorld
//5<=n<9
String str="HelloWorld";
str=str.substring(5,10); --即可求出World
- 测试字符串是否相等。equals
Object equals 比较内存地址
String equals 比较内容
1.寄存器
2.栈
3.堆 *
4.静态存储区
5.常量存储区 * 声明final static
String常量池
6.其他存储位置
new出所有的内容均存储于堆内存,新对象
字符串编辑
字符串内容不变,改变的是引用
String a = "hello";
a=a+"world";
System.out.println(a);
2、字符串其他常用操作