Difference between revisions of "Uses/ja"

From Lazarus wiki
Jump to navigationJump to search
(Created page with "{{Uses}} {{Japanese Menu}} '''Uses''' 宣言部は、 Pascal/ja プログラム宣言 される、that it will invoke or use certa...")
 
Line 3: Line 3:
 
{{Japanese Menu}}
 
{{Japanese Menu}}
  
'''Uses''' 宣言部は、 [[Pascal/ja]] [[Program/ja|プログラム]] [[declaration/ja|宣言]] される、that it will invoke or use certain [[Procedure/ja|procedures]], [[Function/ja|functions]], [[object]]s, [[Const/ja|const]]ants, [[Var/ja|変数]] やそのほか色々なものを定義する、または特定することを宣言するand other items which are defined or declared in the specified [[Unit/ja|unit]].
+
'''Uses''' 節は、 [[Pascal/ja]] [[Program/ja|プログラム]] での [[declaration/ja|宣言部]] であり、Use節で指定した [[Unit/ja|Unit]] 内で定義または特定される [[Procedure/ja|プロシージャ]][[Function/ja|関数]][[object|オブジェクト]][[Const/ja|定数]][[Var/ja|変数]] などを使えるようにする箇所です。
  
すべての Pascal プログラム と Unit は、自動的に以下の暗黙の宣言部を持ちます。
+
すべての Pascal プログラム と Unit は、自動的に以下の暗黙の uses 節を持ちます。
  
 
  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.  (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/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.)
 
[[category:Pascal/ja]]
 
[[category:Pascal/ja]]

Revision as of 15:19, 4 June 2016

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

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

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

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

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