C++ 字符串 at() 函数
定义和用法
The at()
函数返回字符串中索引处的字符。
提示:要获取字符串的最后一个字符,可以使用以下代码:string.at(string.length() - 1);
语法
string.at(index);
参数值
参数 | 描述 |
index | 必填。要返回的字符的索引(位置)。 |
技术细节
返回值 | 单个字符,表示字符串中给定索引位置的字符。 |
---|
更多例子
相关页面
在我们的 字符串教程 中了解更多关于字符串的信息。
The at()
函数返回字符串中索引处的字符。
提示:要获取字符串的最后一个字符,可以使用以下代码:string.at(string.length() - 1);
string.at(index);
参数 | 描述 |
index | 必填。要返回的字符的索引(位置)。 |
返回值 | 单个字符,表示字符串中给定索引位置的字符。 |
---|
在我们的 字符串教程 中了解更多关于字符串的信息。
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]