検索結果- 英語 - 多言語
検索内容:
inner class
(object-oriented programming) A class that is declared entirely within the body of another class.
内部クラス: あるクラスの内部(本体内)で完全に宣言されるクラス。
anonymous class
(object-oriented programming) A class without a name, available only in the scope where it is defined.
匿名クラス:オブジェクト指向プログラミングにおいて、名前が付けられておらず、定義されたスコープ内でのみ利用可能なクラス
local class
(object-oriented programming) A class that is declared in the body of a function, and can only be referred to in the rest of the function.
関数内部で宣言され、その関数内でのみ参照可能なクラス
class variable
(software, object-oriented programming) A member variable that is associated with a class of which a single copy exists.
オブジェクト指向プログラミングにおいて、クラスに紐づいたメンバー変数であり、全インスタンスで共有される単一のコピーしか存在しない変数。
class variables
plural of class variable
「class variable」の複数形、すなわち複数のクラス変数を指す。
class rings
plural of class ring
クラスリングの複数形。学校や学級の記念として贈られる指輪(卒業記念指輪)を指す。
nested class
(object-oriented programming) Synonym of inner class
内部クラス / 入れ子クラス
outer class
(object-oriented programming) A class that contains an inner class.
内部クラスを含む、または保持するクラス。 / 内側のクラス(内部クラス)を外側から定義するクラス。