string::front

Posted xpylovely

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了string::front相关的知识,希望对你有一定的参考价值。

char& front();
const char& front() const;
功能:返回string对象的首个字符,可以改变它的值

#include <string>
#include <iostream>

using namespace std;

int main()
{
string s1("test");
cout << s1.front() << endl;
s1.front() = ‘T‘;
cout << s1 << endl;
string s2;
cout << s2.front() << endl;
}

以上是关于string::front的主要内容,如果未能解决你的问题,请参考以下文章