Skip to content

Latest commit

 

History

History
47 lines (34 loc) · 693 Bytes

File metadata and controls

47 lines (34 loc) · 693 Bytes

back

  • string[meta header]
  • std[meta namespace]
  • basic_string[meta class]
  • function[meta id-type]
  • cpp11[meta cpp]
const charT& back() const;
charT& back();

概要

末尾要素への参照を取得する。

要件

!empty()

戻り値

operator[](size() - 1) の結果を返す。

#include <iostream>
#include <string>

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

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

出力

o

参照