FUNCTION POINTER Meaning in Japanese - translations and usage examples

['fʌŋkʃn 'pointər]
['fʌŋkʃn 'pointər]
関数ポインタを
関数へのポインター

Examples of using Function pointer in English and their translations into Japanese

{-}
  • Colloquial category close
  • Ecclesiastic category close
  • Computer category close
  • Programming category close
Typedef function pointer?
Typedef関数ポインタ
Unpacking” a tuple to call a matching function pointer.
一致する関数ポインタを呼び出すタプルを"アンパック"する。
How do function pointers in C work?
Cの関数ポインタはどのように機能しますか?
Argument notify in SetTimer() is a function pointer in Void type.
SetTimerの引数のnotifyはVoid型の関数ポインタです
C-gt; Pascal: function pointer inside structure.
C-gt;Pascal:構造体内の関数へのポインター
Applications must cast it to an appropriate function pointer type.
アプリケーションは、それを適切な関数ポインタタイプにキャストしなければなりません。
Specify the function pointer of the push handler.
プッシュハンドラーの関数ポインタを指定します。
Listing 19-35: Using the fn type to accept a function pointer as an argument.
リスト19-35:fn型を使用して引数として関数ポインタを受け入れる。
C-gt; Pascal: function pointer inside structure Find similar branches.
C-gt;Pascal:構造体内の関数へのポインター似ている枝を探す。
The interval is to be set with the function pointer upon the initialization.
呼び出し間隔は初期化の際に関数ポインタと同時に指定します。
Unlike function pointers, delegates are secure, verifiable, and type safe.
関数ポインターとは異なり、デリゲートは安全で、検証可能で、タイプセーフです。
Delegates are similar to C++ function pointers, but are type safe.
デリゲートは、C++の関数ポインターに似ていますが、タイプセーフです。
You can pass fprintf() itself, provided you cast it to the right function pointer type.
Fprintf()自体を渡すこともできますが、その場合は正しい関数ポインタ型にキャストする必要があります。
Action_handler The function pointer to the action handler.
Action_handlerアクションハンドラーへの関数ポインタを指定します。
If you're familiar with C/C++ then this looks like passing a function pointer around.
もしC/C++のたしなみがあるなら、これは関数ポインタを渡しているようにみえる。
The other restrictions on a function pointer are the same as a static delegate.
関数ポインターのその他の制限は、静的デリゲートと同様である。
In both cases the operand passed from C to the inlineassembler may be the same C function pointer.
どちらの場合も、インラインアセンブラにCから渡されたオペランドは、同じCの関数ポインタである場合があります。
We're not allowed to use the function pointer fn as a return type, for example.
例えば、関数ポインタのfnを戻り値の型として使うことは許容されていません。
Defines a new Red routine named name,with spec as specification block and func-ptr C function pointer as body.
Nameで指定された名前と、specをスペックブロック、func-ptrで指定されたCの関数ポインタをボディとして、新しいRedのroutineを定義します。
A Proc represents a function pointer with an optional context(the closure data).
Procは関数ポインタを表すオブジェクトで、追加のコンテキスト(クロージャ)を含むことができます。
On some platforms,pointers to extern"C" functions are equivalent to"ordinary" function pointers, so they work fine.
いくつかのプラットフォームでは、extern"C"な関数へのポインタは「通常の」関数ポインタと等価であり、問題なく動く。
Then, a function pointer called myFunc rather than the full function name can be used.
次に、完全な関数名の代わりにmyFuncと呼ばれる関数ポインタを使用します。
For example, we can convert a C delegate to an unmanaged function pointer, then pass a C method to the native side.
たとえば、Cデリゲートをアンマネージド関数ポインタに変換してから、Cメソッドをネイティブ側に渡すことができます。
State_handler The function pointer to the state handler that sends the state at regular intervals.
State_handler一定間隔でのステート更新を行う際に呼び出す、ステートハンドラーへの関数ポインタを指定します。
The reason for the size is that each type object stores a large number of values,mostly C function pointers, each of which implements a small part of the type's functionality.
各型オブジェクトは多くの値を保持しており、そのほとんどはC関数へのポインタで、それぞれの関数はその型の機能の小さい部分を実装しています。
It contains a function pointer, an optional object reference for the this parameter, and a link to a chained delegate.
これには関数ポインター、thisポインターパラメータへのオプションのオブジェクト参照、連鎖したデリゲートへのリンクが含まれる。
Develop such OS-dependent processes in the user program and set function pointers to those processes in the target members of the kii_t structure.
OSに依存する処理はユーザープログラム側で用意して、その処理への関数ポインタをkii_t構造体の対象メンバーに設定します。
The developer can specify which to use by modifying the delegate's declaration: funcptr cdecl int F1(int value);In this proposal, function pointers would only be allowed in an unsafe context.
開発者はデリゲートの宣言を変更することによってどれを使用するかを指定できる:funcptrcdeclintF1(intvalue);提案では、関数ポインターはunsafeコンテキストのみで利用できる。
The sa_handler member declaration in FreeBSD include files is that of ANSI C(as required by POSIX),so a function pointer of a BSD Ns-style function needs to be casted to compile without warning.
FreeBSDインクルードファイルのsa_handlerメンバ宣言は、(POSIXの要求に従い)ANSICのものです。そのため、BSDスタイルの関数のポインタの場合、警告メッセージを無くしてコンパイルするにはキャストする必要があります。
As handles are recycled by the system, it is possible(although unlikely) that a handle from one invocation of timeout() may match the handle of another invocation of timeout()if both calls used the same function pointer and argument, and the first timeout is expired or canceled before the second call.
ハンドルがシステムによって再利用されるので、両方の呼び出しが同じ関数のポインタおよび引数を使用し、2番目の呼び出しの前に最初のtimeoutが終了するか取り消された場合には、1つのtimeout() の実行からのハンドルが別のtimeout()の実行のハンドルが一致することができることが(意外ではあるが)可能です。
Results: 296, Time: 0.0289

Word-for-word translation

Top dictionary queries

English - Japanese