翻訳と辞書
Words near each other
・ Fail Loch
・ Fail Mirgalimov
・ Fail Monastery
・ Fail on Cue
・ Fail Safe (1964 film)
・ Fail Safe (2000 film)
・ Fail, Viseu
・ Fail-deadly
・ Fail-fast
・ Fail-safe
・ Fail-safe (disambiguation)
・ Fail-Safe (novel)
・ Fail-Safe Investing
・ Fail-safes in nanotechnology
・ Fail-silent system
Fail-stop
・ Fail2ban
・ Failaka Island
・ Failan
・ Failand
・ Failbetter Games
・ Failbook
・ Faildergdóit
・ Faile
・ FAILE (artist collaboration)
・ Failed acreage
・ Failed back syndrome
・ Failed Iraqi peace initiatives
・ Failed relocation of the Sacramento Kings
・ Failed state


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Fail-stop : ウィキペディア英語版
Fail-stop
A fail-stop subset of a computer language is one that has the same semantics as the original, except in the case where an exceptional condition arises. The fail-stop subset must report an exceptional condition whenever the superset language reports one, but may additionally report an exceptional condition in other cases.
Fail-stop languages are often used in computer systems where correctness is very important, since it is easier to make such systems fail-fast. For example, the "+" operator in many programming languages is not associative because of the possibility of overflow. Repairing these languages to fail fast when commonly assumed properties do not hold, makes it much easier to write and verify correct code.
==Examples==
In many widely used programming languages the code below might reduce the bank account value if the deposited amount or old account value is very large, by causing an overflowed value to be assigned to new_bank_account_value.

new_bank_account_value = old_bank_account_value + amount_deposited
// example calculation with 32-bit signed integers to demonstrate, which overflow above 2,147,483,647
// -2,147,483,646 = 2,147,483,640 + 10

But in a fail-stop language that treats overflow as an exceptional condition, it is either correct, or will terminate with an exceptional condition.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Fail-stop」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.