当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ String 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





相关用法


注:本文由纯净天空筛选整理自 C++ String front()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。