C++ 字符串 front()函数

C++ 字符串 front()函数

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

语法

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

char& p = str.front();

参数

该函数不包含任何参数。

返回值

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

示例1

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

#include<iostream>
#include<string>
using namespace std;
int main()
{
    string str ="12345";
    cout<<str.front();
    return 0;
}

输出:

1

示例2

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

#include<iostream>
#include<string>
using namespace std;
int main()
{
    string str ="javaTpoint";
    cout<<str.front();
    return 0;
}

输出:

j

示例3

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

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

输出:

Hello World

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程