Files
Hui-s-notebook/logseq-java/pages/StringBuilder.md
2024-02-02 00:12:49 +08:00

18 lines
363 B
Markdown

- 长度和内容可变的[[String]] [[字符串]]
- ```java
//创建一个16个字符串
StringBulider s = new StringBuilder();//可传入字符串,长度
a.append("Hello,World");
a.append("nihao");
```
- [[apppend]]
- [[insert]]
- [[capacity]]
- [[length]]
- [[setCharAt]]
- [[delete]]
- [[reverse]]
- [[substring]]
- [[indexOf]]
- [[lastIndexOf]]
-