Skip to content

Latest commit

 

History

History
61 lines (47 loc) · 1.12 KB

File metadata and controls

61 lines (47 loc) · 1.12 KB

cend

  • string[meta header]
  • std[meta namespace]
  • basic_string[meta class]
  • function[meta id-type]
  • cpp11[meta cpp]
const_iterator cend() const noexcept;

概要

末尾の次を指す読み取り専用イテレータを取得する。

戻り値

末尾の次を指す読み取り専用イテレータ

例外

投げない

備考

  • basic_stringクラスのイテレータ範囲は、ヌル文字('\0')終端ではない
  • この関数によって返されるイテレータは、*thisが保持するいずれの要素も参照しない。その指す先は、不正な範囲となるだろう

#include <iostream>
#include <string>
#include <algorithm>

int main()
{
  std::string s = "hello";
  s.insert(s.begin() + 2, '\0');

  // 文字列オブジェクトsに含まれる、ヌル文字を除く全ての要素を出力
  std::for_each(s.cbegin(), s.cend(), [](char c) {
    if (c != '\0')
      std::cout << c << std::endl;
  });
}
  • cend()[color ff0000]
  • insert[link insert.md]
  • s.begin()[link begin.md]
  • s.cbegin()[link cbegin.md]

出力

h
e
l
l
o

参照