語学学習のスペースアルク(SPACE ALC)がお届けする進化するオンライン英和・和英辞書『英辞郎 on the WEB』。大学生やビジネスパースンから翻訳家、医療・製薬業関係者の方々まで幅広くお使いいただいております。
ALC Online Shop

英辞郎データ提供元 EDP のサイトへ
検索文字列 例外 該当件数 : 502

1 2 3 4 5 6 7 8 9 

* データの転載は禁じられています。  
  • 例外
    • anomaly
    • exception
    • exceptional instance
    • isolated example
  • 例外であって慣例ではない
    exception, not the rule
  • 例外でない
    【形】
      unexceptional
  • 例外ではない
    be no exception
  • 例外として扱うこと
    exception
  • 例外として示した上記の事例においては、第Ⅱ相試験あるいはそれ以降の開発のために、適切な評価のための試験がなされるべきである。
    In these latter cases, appropriate qualification studies can be warranted to support Phase II or later stages of development.〔【出典】ICHガイドライン
  • 例外とは何か? 通常これはエラーであり、何かがうまくいかなかったこを知らせるものだ(エラーではない例外もあるが、現時点ではそれは気にしないでおこう)。一部のプログラミング言語は、エラーを戻り値として返すことを奨励しており、あなたは戻り値をチェックする。Pythonは例外の使用を奨励しており、あなたはそれを処理するのだ。
    What is an exception? Usually it's an error, an indication that something went wrong. (Not all exceptions are errors, but never mind that for now.) Some programming languages encourage the use of error return codes, which you check. Python encourages the use of exceptions, which you handle.〔【出典】"Dive Into Python 3" by Mark Pilgrim 【和訳】Fukada & Fujimoto 【License】CC-BY-SA-3.0
  • 例外と見なされる
    be regarded as an aberration
  • 例外なき構造改革を求める
    call for structural reforms without exceptions
  • 例外なく
    • across the board
    • every time〈話〉
    • to a man
    • without (any) [with no] exception
    • without (any) [with no] known exception

    【副】
    1. definitely
    2. flatly
    3. unexceptionally
    4. universally
  • 例外なく当てはまる
    apply universally
  • 例外なく接近していく。
    Without exception they are drawing it closer.〔【出典】Hiragana Times, 1993年8月号◆【出版社】株式会社ヤック企画 "HT082029", "2571477"
  • 例外なしに
    bar none
  • 例外についてのドキュメントPHPでは、Java とは異なり、そのメソッドがどんな例外をスローするのかをシグネチャで明示的に宣言することができません。
    Documenting Exceptions Because PHP, unlike Java, does not require you to explicitly state which exceptions a method throws in the method signature, it is critical that exceptions be thoroughly documented in your method headers.〔【出典】PEAR 【License】Open Publication License 【編集】独立行政法人情報通信研究機構
  • 例外によって規則があることが分かる。
    The exception proves the rule.〔古代ローマのキケロが提案したとされる考え方。例えば「日曜日は駐車禁止」という貼り紙(例外)があれば、その他の曜日は駐車して良いという規則があることが分かる。この場合のproveはconfirmの意味で使われている。しかし、この本来の考え方が誤解されて使われるようになり、「例外がその規則を適用できるかどうか検査する」や「規則には必ず例外があるものだ」という意味にもなることがある。〕
  • 例外に含める情報は、エラーの内容によって異なります。
    The kind of information to be included in the exception is dependent on the error condition.〔【出典】PEAR 【License】Open Publication License 【編集】独立行政法人情報通信研究機構
  • 例外
    【形】
      exceptive
  • 例外の原則
    • exception principle
    • exceptional principle
    • law of exception
  • 例外はPythonのあらゆる所にある。Pythonの事実上すべての標準モジュールが例外を使用しているし、Python自体も実にさまざまな状況において例外を送出する。この本を通してそれを何度も見掛けることになる。
    Exceptions are everywhere in Python. Virtually every module in the standard Python library uses them, and Python itself will raise them in a lot of different circumstances. You'll see them repeatedly throughout this book.〔【出典】"Dive Into Python 3" by Mark Pilgrim 【和訳】Fukada & Fujimoto 【License】CC-BY-SA-3.0
  • 例外は、あなたのライブラリのAPIにおいて重要な役割を演じます。
    Exceptions play a critical role in the API of your library.〔【出典】PEAR 【License】Open Publication License 【編集】独立行政法人情報通信研究機構
  • 例外は、それを発生させた関数の中で処理される必要はない。もし、その関数が例外を処理しない場合は、例外はその関数を呼び出している関数へ渡され、さらにその関数を呼び出している関数に渡され、以降同様に「スタックを遡る」。もしどの関数でも例外が処理されない場合は、プログラムはクラッシュし、Pythonが "Traceback" というものを標準エラー出力に出力し、一連の流れが終わる。繰り返すが、これは望む結果かもしれない。それはあなたのプログラムが何をするのかによるのだ。
    You don't need to handle an exception in the function that raises it. If one function doesn't handle it, the exception is passed to the calling function, then that function's calling function, and so on "up the stack." If the exception is never handled, your program will crash, Python will print a "traceback" to standard error, and that's the end of that. Again, maybe that's what you want; it depends on what your program does.〔【出典】"Dive Into Python 3" by Mark Pilgrim 【和訳】Fukada & Fujimoto 【License】CC-BY-SA-3.0
  • 例外は、先の節で述べた定義によるエラーが発生した場合に常にスローしなければなりません。
    An exception should be thrown whenever an error condition is met, according to the definition provided in the previous section.〔【出典】PEAR 【License】Open Publication License 【編集】独立行政法人情報通信研究機構
  • 例外は、必ずしもプログラムのクラッシュを引き起こすわけではない。例外は処理できるのだ。例外の原因が完全にコードのバグ(存在しない変数にアクセスするなどの)であることもあるが、例外の発生が予期できることもある。ファイルを開こうとしたとき、そのファイルは存在しないかもしれない。モジュールをインポートしようとするとき、そのモジュールはインストールされていないかもしれない。データベースに接続しようとしたとき、そのデータベースは利用できないかもしれないし、アクセスするための適切なセキュリティー証明書を持っていないかもしれない。もし、そのコードが例外を発生させることを知っているのならば、try...exceptブロックを使って例外を処理すべきだ。
    An exception doesn't need to result in a complete program crash, though. Exceptions can be handled. Sometimes an exception is really because you have a bug in your code (like accessing a variable that doesn't exist), but sometimes an exception is something you can anticipate. If you're opening a file, it might not exist. If you're importing a module, it might not be installed. If you're connecting to a database, it might be unavailable, or you might not have the correct security credentials to access it. If you know a line of code may raise an exception, you should handle the exception using a try...except block.〔【出典】"Dive Into Python 3" by Mark Pilgrim 【和訳】Fukada & Fujimoto 【License】CC-BY-SA-3.0
  • 例外は、決して通常のプログラムの流れで使用してはいけません。
    Exceptions should never be used as normal program flow.〔【出典】PEAR 【License】Open Publication License 【編集】独立行政法人情報通信研究機構
  • 例外はあるが
    although there is an exception
  • 例外はゴルフで、これは海外から伝わったものであり、キャディにチップを支払う慣習がある。
    One exception is that in golf, which was brought over from abroad, there is a common practice of tipping the caddy.〔【出典】『日本人の法則』(長谷川勝行著)◆【出版社】株式会社ヤック企画 "YA21-139", "2423691"
  • 例外はスローされません。注意この関数は、スタティックにコールされます。
    No exceptions thrown.NoteThis function should be calledstatically.〔【出典】PEAR 【License】Open Publication License 【編集】独立行政法人情報通信研究機構
  • 例外はスローされません。注意この関数は、スタティックにコールすることができます。
    No exceptions thrown.NoteThis function can be calledstatically.〔【出典】PEAR 【License】Open Publication License 【編集】独立行政法人情報通信研究機構
  • 例外は認めません。決まりには従いなさい!
    No exceptions. You have to follow [obey] the rules!"1SITUKE", "2117349"
  • 例外もあるでしょうが、私は知らない人や病院のような公の場所でもいつも親切に丁寧にしてもらっています。
    I know there are exceptions, but I personally have always been treated kindly and respectfully by strangers as well as in public places such as hospitals, etc.〔【出典】Hiragana Times, 1996年10月号◆【出版社】株式会社ヤック企画 "HT120019", "2337225"
  • 例外を再スローする
    rethrow exception《コ》〔例外を捕捉した関数がその場で問題に対応する代わりに、呼び出し元に例外を通知し処理を委ねること。〕
  • 例外を受ける
    be subject to exception
  • 例外を発生させる構文は実にシンプルだ。raise文を使い、その後に例外名と、オプションでデバッグ用の人間が読める文字列を置く。この構文は関数呼び出しに似ている(実際に、例外はクラスとして実装されており、raiseはValueErrorクラスのインスタンスを生成し、'number must be non-negative'という文字列をインスタンスの初期化メソッドに渡す。しかしこの話は先走り過ぎだ!)。
    The syntax for raising an exception is simple enough. Use the raise statement, followed by the exception name, and an optional human-readable string for debugging purposes. The syntax is reminiscent of calling a function. (In reality, exceptions are implemented as classes, and this raise statement is actually creating an instance of the ValueError class and passing the string 'number must be non-negative' to its initialization method. But we're getting ahead of ourselves!)〔【出典】"Dive Into Python 3" by Mark Pilgrim 【和訳】Fukada & Fujimoto 【License】CC-BY-SA-3.0
  • 例外を設けては日和見主義に立ち回る
    pussyfoot around with exceptions
  • 例外を設けること
    reservation
  • 例外を許さない
    hard and fast(規則が)
  • 例外を認めない
    • admit no exceptions
    • make no exception
  • 例外を認める
    stretch a point
  • 例外を認めるにしても
    if any exceptions are to be made
  • 例外クラス
    exception class《コ》
  • 例外クラスの階層PEARパッケージの例外は、すべてPEAR_Exceptionを継承していなければなりません。
    Exception class hierarchies All of PEAR packages exceptions must be descendant from PEAR_Exception.〔【出典】PEAR 【License】Open Publication License 【編集】独立行政法人情報通信研究機構
  • 例外コード
    exception code
  • 例外ハンドラ
    exception handler《コ》
  • 例外パラメータ
    exception parameter《コ》
  • 例外マスク
    exception mask《コ》
  • 例外メッセージ
    exception message
  • 例外リンク
    exception link《コ》
  • 例外リー代数
    exceptional Lie algebra《数学》〔単純リー代数の中でA、B、C、D型に分類されないもの、すなわちE6、E7、E8、F4、G2リー代数を例外リー代数と呼ぶ。〕
  • 例外リー群
    exceptional Lie group《数学》〔単純リー群の中でA、B、C、D型に分類されないもの、すなわちE6、E7、E8、F4、G2リー群を例外リー群と呼ぶ。〕
  • 例外信号
    exceptional signal
* データの転載は禁じられています。  

1 2 3 4 5 6 7 8 9