阡陌 发表于 2024-3-22 18:33:33

String.setCharAt()


**setCharAt()**





## 描述

设置字符串中的一个字符。对于字符串现有长度之外的索引,此函数无效。



## 语法

```cpp
myString.setCharAt(index, c)
```

**参数:**

- `myString`:一个类型为 String 的变量。
- `index`:要设置字符的位置索引。
- `c`:要存储到指定位置的字符。

**返回值:**






页: [1]
查看完整版本: String.setCharAt()