memrootじしょ
英和翻訳
static method
subsidized
disputed territory
descriptive theory
Post-structuralism
collation table
information source
Corrective Action Preventive Action (CAPA)
be understanding with
Testis
static method
/ˌstætɪk ˈmɛθəd/
スタティック メソッド
1.
クラスのインスタンス化なしに呼び出せるメソッド
オブジェクト指向プログラミングにおいて、特定のインスタンス(オブジェクト)に属さず、クラス自体に直接属するメソッドです。クラスのインスタンスを作成することなく、クラス名を使って直接呼び出すことができます。
In
Java,
the
main
method
is
a
static
method.
(Javaでは、mainメソッドは静的メソッドです。)
In Java
Javaにおいて
the main method
mainメソッドは
is
です
a static method
静的メソッド
You
can
call
a
static
method
directly
using
the
class
name.
(静的メソッドはクラス名を使って直接呼び出すことができます。)
You can call
あなた(または一般的に)は呼び出すことができます
a static method
静的メソッドを
directly
直接
using the class name
クラス名を使って
Static
methods
cannot
access
instance
variables
directly.
(静的メソッドはインスタンス変数に直接アクセスできません。)
Static methods
静的メソッドは
cannot access
アクセスできません
instance variables
インスタンス変数に
directly
直接
Utility
functions
are
often
implemented
as
static
methods.
(ユーティリティ関数はしばしば静的メソッドとして実装されます。)
Utility functions
ユーティリティ関数は
are often implemented
しばしば実装されます
as static methods
静的メソッドとして
関連
class method
instance method
static variable
class variable
object
instance
programming
object-oriented programming