std::exception::exception
提供:cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
| exception(); |
(1) | |
| exception( const exception& other ); |
(2) | |
新しい例外オブジェクトを構築し.
1) Original:
Constructs new exception object.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
デフォルトのコンストラクタです。 what()空の文字列を返します.
2) Original:
Default constructor. what() returns empty string.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
コンストラクタをコピーします。
otherのものと内容を初期化しますOriginal:
Copy constructor. Initializes the contents with those of
otherThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[編集] パラメータ
| other | - | 別の例外の内容を割り当てることができます
Original: another exception to assign the contents of The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |