• Class / Function / Type

      std::
    • Header file

      <>
    • Other / All

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

    履歴 編集

    function
    <stacktrace>

    std::basic_stacktrace::crend

    const_reverse_iterator crend() const noexcept; // (1) C++23
    

    概要

    先頭の前を指す読み取り専用逆順イテレータを取得する。

    戻り値

    return reverse_iterator(cbegin());
    

    #include <iostream>
    #include <stacktrace>
    #include <algorithm>
    
    void g() {
      std::stacktrace st = std::stacktrace::current();
      std::for_each(st.crbegin(), st.crend(), [](const std::stacktrace_entry& x) {
        std::cout << x << std::endl;
      });
    }
    
    void f() {
      g();
    }
    
    int main() {
      f();
    }
    

    出力例 (GCC)

    
    _start at :0
    __libc_start_main at :0
         at :0
    main at /app/example.cpp:17
     f() at /app/example.cpp:13
     g() at /app/example.cpp:6
    

    バージョン

    言語

    • C++23

    処理系