• Class / Function / Type

      std::
    • Header file

      <>
    • Other / All

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

    履歴 編集

    function
    <stacktrace>

    std::stacktrace_entry::operator bool

    constexpr explicit operator bool() const noexcept; // (1) C++23
    

    概要

    stacktrace_entryが空でないかを判定する。

    戻り値

    *thisが空である場合のみfalseを返す。

    #include <iostream>
    #include <stacktrace>
    
    void g() {
      std::stacktrace st = std::stacktrace::current();
      std::stacktrace_entry entry = st[0];
    
      if (entry) {
        std::cout << "not empty" << std::endl;
      }
      else {
        std::cout << "empty" << std::endl;
      }
    }
    
    void f() {
      g();
    }
    
    int main() {
      f();
    }
    

    出力

    not empty
    

    バージョン

    言語

    • C++23

    処理系