CATCH BLOCK - 日本語 への翻訳

[kætʃ blɒk]
[kætʃ blɒk]
catchブロック

英語 での Catch block の使用例とその 日本語 への翻訳

{-}
  • Colloquial category close
  • Ecclesiastic category close
  • Computer category close
  • Programming category close
When an exception is thrown, code following the statement will not be executed, and PHP will attempt to find the first matching catch block.
例外が投げられた場合、その命令に続くコードは実行されず、PHPは最初にマッチするcatchブロックを探します。
The finally code block is always executed after try or catch block is completed.
Finallyブロックの何かに書いたコードは、tryおよびcatchブロックの後で常に実行されます。
An exception is thrown and the catch block is executed if the pushInstallation() method is called without any logged-in user.
なお、ユーザーがログインしていない状態でpushInstallation()メソッドを呼び出すと、例外が発生してcatchブロックに入ります。
If any statement within the try block(or in a function called from within the try block) throws an exception, control immediately shifts to the catch block.
Tryブロック内(もしくはtryブロック内から呼び出された関数内)のいずれかの文が例外をスローすると、制御はすぐにcatchブロックに移ります。
Rethrowing is a very important pattern of error handling: a catch block usually expects and knows how to handle the particular error type, so it should rethrow errors it doesn't know.
再スローはエラーハンドリングの基本パターンです。:catchブロックは通常、特定のエラータイプを処理する方法を予期し、知っています。したがって、知らないエラーは再スローすべきです。
JavaScript creates this identifier when the catch block is entered; the identifier lasts only for the duration of the catch block; after the catch block finishes executing, the identifier is no longer available.
JavaScriptはcatchブロックに入るときにこの識別子を作成します。識別子はcatchブロックの区間だけ存続します。つまり、catchブロックの実行が終わると、その識別子はもう使えなくなります。
If you are throwing your own exceptions, in order to take advantage of these properties(such as if your catch block doesn't discriminate between your own exceptions and system ones), you can use the Error constructor.
独自の例外をスローして、これらのプロパティを有効に活用したい場合(catchブロックで独自の例外とシステムの例外とを区別したくない場合など)、Errorコンストラクタが使えます。
The drop*() methods do not check if the item to be deleted exists, so it's developer's responsibility to check for exceptions using a try catch block.
Drop\*()メソッドは削除されるアイテムの存在をチェックしません。try-catchブロックを使用して例外をチェックするのは開発者の責務です。
A callback function defined in failure will be called when an error occurs. If you are using Promises, a catch block will be called.
APIで問題が発生すると、failureとして定義されたコールバック関数が呼び出されたり、Promiseのcatchブロックが動作したりします。
Using a"guard" or"scoped lock" object won't help, because the guard object's destructor will not run until the catch block is exited.
この場合、"ガード"または"スコープロック"オブジェクトを使用しても、ガード・オブジェクトのデストラクターはcatchブロックが終了するまで実行されないため意味がありません。
Here we use the catch block only to show the message, but we can do much more: send a new network request, suggest an alternative to the visitor, send information about the error to a logging facility,….
ここでは、メッセージを表示するためのだけにcatchブロックを使っていますが、より多くのことをすることができます。:新たなネットワーク要求、訪問者への代替手段の提案、ロギング機構へエラーに関する情報の送信…。
In most cases, particularly if the string that you're converting is input by a user or read from a file, you should use a try/catch block and handle the FormatException exception if the conversion is unsuccessful.
特に、変換する文字列がユーザーによって入力されたり、ファイルから読み取られたりする場合は、通常、try/catchブロックを使用しFormatExceptionて、変換に失敗した場合に例外を処理する必要があります。
Nested try/catch blocks.
Try/catchブロック
Try/ catch blocks.
Try/catchブロック
Errors with severity from 0 through 10 are informational messages and do not cause execution to jump from the CATCH block of a TRY… CATCH construct.
重大度0~10のエラーは情報メッセージであるため、TRY…CATCH構造のCATCHブロックからのジャンプは実行されません。
Catch blocks cannot be used in UDF but can be used in stored procedure.
キャッチ・ブロックはUDFでは使用できませんが、ストアード・プロシージャーで使用できます。
You may also want to increase the String Encryption Level or increase the number of try/catch blocks injected in Try/Catch Control Flow Obfuscation.
さらに、文字列の暗号化レベルを高くしたり、Try/Catchによる制御フローの難読化に差し込むtry/catchブロックの数を増やしたりすることもできます。
You can then reference the object's properties in the catch block.
そうすれば、catchブロックの中でそのオブジェクトのプロパティを参照できます。
Replace the commented out TODO line in the catch block with out. println("exception"+ ex);
Catchブロック内のコメントアウトされたTODO行をout.println("exception"+ex);に置き換えます。
Unconditional catch clause When a single, unconditional catch clause is used, the catch block is entered when any exception is thrown.
無条件catch節単独の無条件catch節が使われたときは、任意の例外が投げられるとcatch節に入ります。
結果: 183, 時間: 0.0387

異なる言語での Catch block

単語ごとの翻訳

トップ辞書のクエリ

英語 - 日本語