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

履歴 編集

function
<regex>

std::regex_error::コンストラクタ(C++11)

explicit regex_error(regex_constants::error_type ecode);

概要

エラーコードを受け取ってオブジェクトを構築する。

#include <regex>

int main()
{
  // 開き丸カッコに対応した閉じ丸カッコがない、というエラーコードの例外を送出
  throw std::regex_error(std::regex_constants::error_paren);
}

出力

Segmentation fault

バージョン

言語

  • C++11

処理系

  • Clang: 3.0 , 3.1 , 3.2 , 3.3 , 3.4 , 3.5 , 3.6
  • GCC: 4.9.0 , 4.9.1 , 5.0.0
  • ICC: ??
  • Visual C++: ??