C++ 字符串库 - 前面


描述

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

宣言

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

char& front();

C++11

const char& front() const;

参数

没有任何

返回值

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

例外情况

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

例子

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

#include <iostream>
#include <string>

int main () {
   std::string str ("Sairamkrishna Mammahe");
   str.front() = 'A';
   std::cout << str << '\n';
   return 0;
}
Aairamkrishna Mammahe
字符串.htm