公共成员函数
<system_error>

std::error_code::assign

void assign (int val, const error_category& cat) noexcept;
分配错误码
error_code对象赋值为与error_category cat关联的值val

可以使用赋值运算符 (=),通过使用枚举值来为error_code对象分配一个新值。

参数

val
一个用于标识错误码的数值。
cat
error_category 对象的引用。

返回值



示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// error_code::assign
#include <iostream>       // std::cout
#include <cerrno>         // errno
#include <system_error>   // std::error_code, std::generic_category
#include <cmath>          // std::pow

struct expnumber {
  double value;
  std::error_code error;
  expnumber (double base, double exponent) {
    value = std::pow(base,exponent);
    if (errno) error.assign (errno,std::generic_category());
  }
};

int main()
{
  expnumber foo (3.0, 2.0);
  std::cout << foo.value << "\t" << foo.error.message() << '\n';

  expnumber bar (3.0, 10e6);
  std::cout << bar.value << "\t" << bar.error.message() << '\n';

  return 0;
}

可能的输出
9       No error
inf     Result too large


另见