const charT& front() const; // (1) C++11
constexpr const charT& front() const; // (1) C++20
charT& front(); // (2) C++11
constexpr charT& front(); // (2) C++20
概要
先頭要素への参照を返す。
要件
戻り値
operator[](0)
の結果を返す。
例
#include <iostream>
#include <string>
int main()
{
std::string s = "hello";
char& c = s.front();
std::cout << c << std::endl;
}
出力
h