CLASS CONSTRUCTOR Meaning in Japanese - translations and usage examples

[klɑːs kən'strʌktər]
Noun
[klɑːs kən'strʌktər]
クラスのコンストラクタ
クラスのコンストラクター
クラスコンストラクタ
classコンストラクタ

Examples of using Class constructor in English and their translations into Japanese

{-}
  • Colloquial category close
  • Ecclesiastic category close
  • Computer category close
  • Programming category close
Provided with Class constructor.
Classコンストラクタにより提供される。
Add a class constructor that assigns the initial this. state:.
Stateの初期状態を設定するクラスコンストラクタを追加する:。
This is also the array format used in the class constructor.
これは、クラスのコンストラクタで使用するフォーマットでもあります。
The class constructor optionally accepts a URL as its first parameter.
クラスのコンストラクタには、オプションの引数としてURLを指定できます。
In JavaScript, super refers to the parent class constructor.
JavaScriptではsuperは親クラスのコンストラクタを参照します。
The class constructor optionally accepts a URL as it's first parameter.
クラスのコンストラクタには、オプションの引数としてURLを指定することができます。
This method is automatically called by the sfForm class constructor.
このメソッドはsfFormクラスのコンストラクタによって自動的に呼び出されます。
It's funny, but the Class constructor itself does not participate in the check!
面白いことに、Classコンストラクタ自身はチェックには参加しません!
This method is automatically called by the sfForm class constructor.
このメソッドは、sfFormクラスのコンストラクターによって自動的に呼び出されます。
And unlike a regular function, a class constructor must be called with new:.
通常の関数とは異なり、クラスconstructorはnewなしで呼ぶことはできません。:。
You should define the component's required data in its class constructor.
コンポーネントで必須のデータは、クラスのコンストラクタで定義する必要があります。
Bytes class constructor constructs an array of bytes from data like string.
Bytesクラスコンストラクターは、文字列stringなどのデータからバイトの配列を構築します。
MockImplementation can also be used to mock class constructors:.
MockImplementationはクラスのコンストラクタをモックするのにも使用できます。
TextView has the class constructor, which accepts an Android Context instance as its parameter.
TextViewには、そのパラメータとしてAndroidのContextインスタンスを受け入れるクラスコンストラクタを持っています。
As seen in Chapter 1,we can pass default values to the form class constructor.
章で説明したように、デフォルト値をフォームクラスのコンストラクタに渡すことができます。
The sfRoute class constructor takes three arguments: a pattern, an associative array of default values, and another associative array for requirements.
SfRouteクラスのコンストラクタは3つの引数をとります:パターン、デフォルト値の連想配列、要件を指定する連想配列です。
The argument to addRules() is the same as the first argument to the class constructor.
AddRules()に渡す引数は、コンストラクタの最初の引数と同じです。
If you pass a string to the Date class constructor, the date can be in a variety of formats, but must at least include the month, date, and year.
Dateクラスのコンストラクターにストリングを渡す場合、日付にはさまざまな形式を使用できますが、少なくとも月、日、年が含まれている必要があります。
To make a class, you pass an object to the Class constructor like this:.
クラスを作るには、Classコンストラクタにオブジェクトを渡します。こんな風に:。
The following example uses a class constructor to create a 7-tuple or septuple that contains population data for New York City for each census from 1950 through 2000.
次の例では、クラスコンストラクターを使用して、7組を作成または20001950年から各国勢調査のニューヨーク市の人口データを含む7組。
This method is useful if youwant to pass a UTC date to the Date class constructor.
このメソッドは、UTCの日付をDateクラスのコンストラクターに渡す場合に便利です。
A class is not initialized until its class constructor(static constructor in C, Shared Sub New in Visual Basic) has finished running.
クラスは、そのクラスコンストラクター(Cではstaticコンストラクター、VisualBasic ではSharedSubNew)の実行が完了するまで初期化されません。
Concretely, you can use any function in a role similar to a class constructor by adding new before its call:.
具体的には呼び出しの前にnewを追加することで任意の関数をクラスのコンストラクタに似た役割で使うことができます。:。
The following example uses a class constructor to create a 7-tuple or septuple that contains population data for New York City for each census from 1950 through 2000.
次の例では、クラスのコンストラクターを使用して、7タプルを作成またはから2000年まで1950年から各年の国勢調査をニューヨークの母集団のデータを含む7組。
In order to switch between active snippet fields(here,these are name, class constructor and destructor), use Tab and Shift+Tab.
アクティブなスニペットフィールド(ここでは名前、クラスコンストラクタ、デストラクタ)を切り替えるには、tabとShift+tabを使用します。
For example, if a class constructor starts a new thread, and the thread procedure calls a static member of the class, the new thread blocks until the class constructor completes.
たとえば、クラスコンストラクターが新しいスレッドを起動し、そのスレッドのプロシージャがクラスのstaticメンバーを呼び出した場合、その新しいスレッドは、クラスコンストラクターが完了するまでブロックされます。
Injecting a test implementation is helpful,but you will probably also want to test whether the class constructor and methods are called with the correct parameters.
テストの実装を注入するのは便利ですが、おそらく、クラスのコンストラクタやメソッドが正しい引数で呼ばれたかどうかも確認したいと考えるでしょう。
By adding new before the call, we say:“Hey JavaScript, I know Person is just a function butlet's pretend it's something like a class constructor. Create an{} object and point this inside the Person function to that object so I can assign stuff like this. name. Then give that object back to me.”.
呼び出しの前にnewを追加することで、私たちはこう言います。「やあJavascript、Personは単なる関数だってことは知っている。だけど、それをクラスコンストラクタのようなものにしよう。オブジェクト({})を作成し、Person関数内でthisはそのオブジェクトを指すようにして、this.nameに値を割り当てる。その後そのオブジェクトを返してほしいんだ。」。
Results: 28, Time: 0.0421

Word-for-word translation

Top dictionary queries

English - Japanese