Difference between revisions of "Uses/ja"

From Lazarus wiki
Jump to navigationJump to search
Line 3: Line 3:
 
{{Japanese Menu}}
 
{{Japanese Menu}}
  
'''Uses''' 節は、 [[Pascal/ja]] [[Program/ja|プログラム]] での [[declaration/ja|宣言部]] であり、Use節で指定した [[Unit/ja|Unit]] 内で定義または特定される [[Procedure/ja|プロシージャ]]、[[Function/ja|関数]]、[[object|オブジェクト]]、[[Const/ja|定数]]、[[Var/ja|変数]] などを使えるようにする箇所です。
+
'''Uses''' 節は [[Pascal]] [[Program|プログラム]] [[declaration|宣言部]] であり、Use節で指定した [[Unit|Unit]] 内で定義または特定される [[Procedure|プロシージャ]]、[[Function|関数]]、[[object|オブジェクト]]、[[Const|定数]]、[[Var|変数]] などを使えるようにするための箇所です。
  
 
すべての Pascal プログラム と Unit は、自動的に以下の暗黙の uses 節を持ちます。
 
すべての Pascal プログラム と Unit は、自動的に以下の暗黙の uses 節を持ちます。
Line 9: Line 9:
 
  USES System;
 
  USES System;
  
コンパイラのexcept in the case where a compiler [[parameter/ja]] allows a unit to exclude a reference to the [[System/ja]] 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.)
+
コンパイラの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.)
 
[[category:Pascal/ja]]
 
[[category:Pascal/ja]]

Revision as of 15:21, 4 June 2016

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.)