• Class / Function / Type

      std::
    • Header file

      <>
    • Other / All

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

    履歴 編集

    function
    <stacktrace>

    std::basic_stacktrace::empty

    [[nodiscard]] bool empty() const noexcept; // (1) C++23
    

    概要

    スタックトレースの履歴数が空かどうかを判定する。

    戻り値

    保持しているスタックトレースの履歴が空であればtrue、そうでなければfalseを返す。

    #include <cassert>
    #include <stacktrace>
    
    void g() {
      auto trace = std::stacktrace::current(0, 0);
      assert(trace.empty());
    }
    
    void f() {
      g();
    }
    
    int main() {
      f();
    
      std::stacktrace trace{};
      assert(trace.empty());
    }
    

    出力

    バージョン

    言語

    • C++23

    処理系