最終更新日時(UTC):
が更新

履歴 編集

function
<string>

std::basic_string::length

size_type length() const;                    // (1) C++03
size_type length() const noexcept;           // (1) C++11
constexpr size_type length() const noexcept; // (1) C++20

概要

文字列の長さを取得する。

戻り値

現在格納されている文字列の要素数。

※文字数ではないことに注意

例外

投げない

計算量

定数時間

#include <iostream>
#include <string>

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

  std::size_t n = s.length();
  std::cout << n << std::endl;
}

出力

5

参照