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

履歴 編集

function
<system_error>

std::error_code::clear(C++11)

void clear() noexcept;

概要

エラー情報をクリアする

効果

エラー値を0、エラーカテゴリをsystem_category()に初期化する。

戻り値

なし

例外

投げない

#include <iostream>
#include <system_error>

int main()
{
  std::error_code ec(static_cast<int>(std::errc::invalid_argument),
                     std::generic_category());

  ec.clear();

  if (ec) {
    std::cout << "error" << std::endl;
  }
  else {
    std::cout << "success" << std::endl;
  }

  std::cout << ec.value() << std::endl;
  std::cout << ec.category().name() << std::endl;
}

出力

success
0
system

バージョン

言語

  • C++11

処理系

参照