std::exception::exception
来自cppreference.com
![]() |
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
exception(); |
(1) | |
exception( const exception& other ); |
(2) | |
构造新的异常对象.
1)
2) 拷贝构造函数。初始化内容的
other
原文:
Copy constructor. Initializes the contents with those of
other
[编辑] 参数
other | - | 另一个例外指定的内容
原文: another exception to assign the contents of |