Skip to content

Latest commit

 

History

History
50 lines (37 loc) · 927 Bytes

front.md

File metadata and controls

50 lines (37 loc) · 927 Bytes

front

  • string[meta header]
  • std[meta namespace]
  • basic_string[meta class]
  • function[meta id-type]
  • cpp11[meta cpp]
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

概要

先頭要素への参照を返す。

要件

!empty()

戻り値

operator[](0) の結果を返す。

#include <iostream>
#include <string>

int main()
{
  std::string s = "hello";

  char& c = s.front();
  std::cout << c << std::endl;
}
  • front()[color ff0000]

出力

h

参照