📜  C++ string.front()函数

📅  最后修改于: 2020-10-21 02:13:17             🧑  作者: Mango

C++ string.front()

此函数用于引用字符串的第一个字符。

句法

考虑一个字符串str。语法为:

char& p = str.front();

参数

该函数不包含任何参数。

返回值

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

例子1

让我们看一个简单的例子。

#include
#include
using namespace std;
int main()
{
    string str ="12345";
    cout<

输出:

1

例子2

让我们来看另一个简单的例子。

#include
#include
using namespace std;
int main()
{
    string str ="javaTpoint";
    cout<

输出:

j

例子3

让我们看一个简单的示例,使用front()函数修改第一个字符。

#include
#include
using namespace std;
int main()
{
    string str ="hello World";
    str.front()='H';    
    cout<

输出:

Hello World