C++ 字符串库 - 返回


描述

它返回对字符串最后一个字符的引用。

宣言

以下是 std::string::back 的声明。

char& back();

C++11

const char& back() const;

参数

没有任何

返回值

它返回对字符串最后一个字符的引用。

例外情况

如果抛出异常,则字符串不会发生任何变化。

例子

在下面的 std::string::back 示例中。

#include <iostream>
#include <string>

int main () {
   std::string str ("sairamkrishna mammahe.");
   str.back() = '!';
   std::cout << str << '\n';
   return 0;
}
sairamkrishna mammahe!
字符串.htm