Skip to content

Latest commit

 

History

History
85 lines (66 loc) · 2.38 KB

File metadata and controls

85 lines (66 loc) · 2.38 KB

operator!=

  • system_error[meta header]
  • std[meta namespace]
  • function[meta id-type]
  • cpp11[meta cpp]
namespace std {
  bool operator!=(const error_code& lhs, const error_code& rhs) noexcept;
  bool operator!=(const error_code& lhs, const error_condition& rhs) noexcept;
  bool operator!=(const error_condition& lhs, const error_code& rhs) noexcept;
  bool operator!=(const error_condition& lhs, const error_condition& rhs) noexcept;
}
  • error_code[link error_code.md]
  • error_condition[link error_condition.md]

概要

error_code, error_conditionの非等値比較を行う

戻り値

!(lhs == rhs)

例外

投げない

#include <iostream>
#include <system_error>

int main()
{
  std::error_code ec1 = std::make_error_code(std::errc::invalid_argument);
  std::error_code ec2 = std::make_error_code(std::errc::permission_denied);
  std::error_condition ed1 = std::make_error_condition(std::errc::invalid_argument);
  std::error_condition ed2 = std::make_error_condition(std::errc::permission_denied);

  std::cout << std::boolalpha;

  std::cout << "error_code != error_code : " << (ec1 != ec1) << std::endl;
  std::cout << "error_code != error_code : " << (ec1 != ec2) << std::endl;

  std::cout << "error_code != error_condition : " << (ec1 != ed1) << std::endl;
  std::cout << "error_code != error_condition : " << (ec1 != ed2) << std::endl;

  std::cout << "error_condition != error_condition : " << (ed1 != ed1) << std::endl;
  std::cout << "error_condition != error_condition : " << (ed1 != ed2) << std::endl;

}
  • std::error_code[link error_code.md]
  • std::make_error_code[link make_error_code.md]
  • std::errc::invalid_argument[link errc.md]
  • std::errc::permission_denied[link errc.md]
  • std::error_condition[link error_condition.md]
  • std::make_error_condition[link make_error_condition.md]

出力

error_code != error_code : false
error_code != error_code : true
error_code != error_condition : false
error_code != error_condition : true
error_condition != error_condition : false
error_condition != error_condition : true

バージョン

言語

  • C++11

処理系

参照

operator==()