📅  最后修改于: 2020-10-21 02:13:17             🧑  作者: Mango
此函数用于引用字符串的第一个字符。
考虑一个字符串str。语法为:
char& p = str.front();
该函数不包含任何参数。
它用于返回第一个字符的引用。
让我们看一个简单的例子。
#include
#include
using namespace std;
int main()
{
string str ="12345";
cout<
输出:
1
让我们来看另一个简单的例子。
#include
#include
using namespace std;
int main()
{
string str ="javaTpoint";
cout<
输出:
j
让我们看一个简单的示例,使用front()函数修改第一个字符。
#include
#include
using namespace std;
int main()
{
string str ="hello World";
str.front()='H';
cout<
输出:
Hello World