C++ 异常库 - operator=



描述

这是一个复制异常。

声明

以下是 std::exception::operator= 的声明

	
exception& operator= (const exception& e) throw();

C++11

	
exception& operator= (const exception& e) noexcept;

参数

e - 另一个异常对象。

返回值

异常

无抛出保证 - 没有成员抛出异常。

exception.htm
广告