• Class / Function / Type

      std::
    • Header file

      <>
    • Other / All

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

    履歴 編集

    function
    <string_view>

    std::basic_string_view::front

    constexpr const_reference front() const;
    

    概要

    先頭文字を取得する。

    要件

    戻り値

    return data()[0];
    

    例外

    投げない

    #include <cassert>
    #include <string_view>
    
    int main()
    {
      std::string_view sv = "Hello World";
    
      char c = sv.front();
      assert(c == 'H');
    }
    

    出力

    バージョン

    言語

    • C++17

    処理系