Jump to content

Run-time checking

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by 82.83.130.231 (talk) at 10:04, 26 May 2004 (newly created). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

"Runtime checking" is a mechanism of an programming language the check for errors at runtime, e.g. arithmetic overflows, invalid casts. Most times an exception is thrown and/or the programm is terminated. Instead of ignoring this failure as it is done in C, C++ etc.

Ada uses runtime checking.