Uses/ja

From Lazarus wiki
Revision as of 15:21, 4 June 2016 by Miyatakejiro (talk | contribs)
Jump to navigationJump to search

Deutsch (de) English (en) español (es) suomi (fi) français (fr) 日本語 (ja)

日本語版メニュー
メインページ - Lazarus Documentation日本語版 - 翻訳ノート - 日本語障害情報

Uses 節は Pascal プログラム宣言部 であり、Use節で指定した Unit 内で定義または特定される プロシージャ関数オブジェクト定数変数 などを使えるようにするための箇所です。

すべての Pascal プログラム と Unit は、自動的に以下の暗黙の uses 節を持ちます。

USES System;

コンパイラのexcept in the case where a compiler parameter allows a unit to exclude a reference to the System unit. (例えば、System unit を再コンパイルする際などであり、その場合はそれ自身を呼び出す必要はない、ということです。One example of this would be if one was recompiling the System unit, it would be necessary for it not to invoke itself.)