memrootじしょ
英和翻訳
base class
prompting
Trust territory
eighth note
base class
[beɪs klæs]
ベースクラス
1.
オブジェクト指向プログラミングにおいて、他のクラスが継承元とするクラス。
オブジェクト指向プログラミングで、子クラスが共通の振る舞いや属性を受け継ぐための親となるクラスを指します。
The
Shape
class
serves
as
a
base
class
for
various
geometric
figures.
(`Shape`クラスは、様々な幾何学的図形のための基底クラスとして機能します。)
The Shape class
`Shape`クラス
serves as
~として機能する
a base class
基底クラス
for various geometric figures
様々な幾何学的図形のために
Inheritance
allows
a
derived
class
to
reuse
methods
from
its
base
class.
(継承により、派生クラスは基底クラスのメソッドを再利用できます。)
Inheritance
継承
allows
可能にする
a derived class
派生クラス
to reuse methods
メソッドを再利用すること
from its base class
その基底クラスから
You
can
define
common
properties
and
methods
in
a
base
class.
(基底クラスで共通のプロパティやメソッドを定義できます。)
You can define
あなたは定義できる
common properties and methods
共通のプロパティとメソッド
in a base class
基底クラスに
All
car
models
are
derived
from
a
common
Vehicle
base
class.
(全ての自動車モデルは、共通のVehicle基底クラスから派生しています。)
All car models
全ての自動車モデル
are derived from
~から派生している
a common
共通の
Vehicle base class
Vehicle基底クラス
関連
derived class
subclass
superclass
inheritance
polymorphism
object-oriented programming