noun
class variable
In object-oriented programming, a variable that belongs to the class itself rather than to any particular instance. Shared across all instances of the class.
クラス変数は、そのクラスのすべてのインスタンスで共有されます。
A class variable is shared by all instances of that class.
Compound of クラス (class) and 変数 (variable), a direct translation of the English programming term 'class variable'.