UNSIGNED INT 日本語 意味 - 日本語訳 - 英語の例文

unsigned int

英語 での Unsigned int の使用例とその 日本語 への翻訳

{-}
  • Colloquial category close
  • Ecclesiastic category close
  • Computer category close
  • Programming category close
Pointer to unsigned int.
Unsignedintを指定します。
Unsigned int count= 14;
Unsignedintcount:14;//カウント数。
The type expected by%x is unsigned int.
Xに対応する型はunsignedintです。
Const unsigned int N= 8;
ConstunsignedintN=8;//クイーンの数。
The type expected by%x is unsigned int.
Xはunsignedintを期待しているわけです。
Const unsigned int NumCoins= 8;
ConstunsignedintN=8;//クイーンの数。
Otherwise, it is converted to an unsigned int.
そうでない場合、unsignedintに変換する。
Unsigned int newlength= index+ length;
Unsignedintm_length;//文字列の長さ。
Otherwise, it is converted to an unsigned int.
それ以外の場合、unsignedintに変換する。
Unsigned int PyType_ClearCache()¶ Clear the internal lookup cache.
UnsignedintPyType_ClearCache()¶内部の検索キャッシュをクリアします。
The type size_t is defined as unsigned int.
Size_t型は、unsignedintとして定義されます。
If one operands is an unsigned int, then other is converted to an unsigned int.
一方がunsignedintなら、他方をunsignedintに型変換する。
Otherwise, it is converted to an unsigned int.
それ以外の場合は、unsignedintに変換されます。
ContextStackSize An unsigned int value that specifies the size of the stack, in kilobytes, to reserve for each context.
ContextStackSize各コンテキスト用に予約するスタックのサイズ(キロバイト単位)を指定するunsignedint値。
The next pointer must be a pointer to unsigned int.
次のポインタはunsignedintを指すポインタである必要があります。
Java does not support unsigned int and long types.
Javaはunsignedintおよびlong型をサポートしません。
Why in C++ do we use DWORD rather than unsigned int?
なぜC++ではunsignedintではなくDWORDを使用するのですか?
The type of discriminant is either''int'',''unsigned int'', or an enumerated type, such as''bool''.
区別値のタイプは"int"か"unsignedint"か"bool"の様。
To play it safe,use the explicit declarations signed int or unsigned int.
ここは素直にsignedintかunsignedintを使っておけば良い。
The function can declare only int, unsigned int, float, and double variables, and classes and structures that contain only these types.
関数は、型がint、unsignedint、float、doubleの変数と、これらの型だけを含むクラスと構造体のみを宣言できます。
Where<NAME> is the property name,<TYPE> is 0 for a string, 1 for an atom, 2 for an int, 3 for an unsigned int.
ここで<NAME>は属性名、<TYPE>は0:文字列・1:アトム、2:整数、3:符号なし整数を表します。
LocalContextCacheSize An unsigned int value that specifies the maximum number of contexts that can be cached in the local queue of each virtual processor. 8.
LocalContextCacheSize各仮想プロセッサのローカルキューにキャッシュすることができるコンテキストの最大数を指定するunsignedint値。8。
A bit-field shall have a type that is a qualified or unqualified version of_Bool,signed int, unsigned int or some other implementation-defined type.
ビットフィールドの型は、修飾版又は非修飾版の_Bool、signedint、unsignedint又は他の処理系定義の型でなければならない。
A GLbitfield is simply defined to be an unsigned int, so the compiler would allow a meaningless call to glClear(42) or even glClear(GL_POINTS).
GLbitfieldは単純にunsignedintで定義されているので、コンパイラはglClear(42)やglClear(GL_POINTS)といった無意味な呼び出しがあってもエラーを検出できない。
It appears that this will go on forever, but in fact the value of i willeventually reach the maximum value storable in an unsigned int; after this, adding 1 to it will yield 0, breaking the loop.
これは永遠に動き続けるように見えるが、実際にはiの値はいずれunsignedintに格納できる最大値に達し、その値に1を加えることで0に巻き戻され、ループから脱出する。
Unsigned int c 0x1234; However, when writing applications directly in MAXQ assembly language, the allocation of space for variables and setting the variables to initial values must be performed explicitly.
Unsignedintc0x1234;しかし、MAXQのアセンブリ言語で直接アプリケーションを記述する場合は、変数用のスペースの割当てと変数に対する初期値の設定を明示的に行う必要があります。
It appears that this will go on forever, but in fact the value of i willeventually reach the maximum value storable in an unsigned int and adding 1 to that number will wrap-around to 0, breaking the loop.
これは永遠に動き続けるように見えるが、実際にはiの値はいずれunsignedintに格納できる最大値に達し、その値に1を加えることで0に巻き戻され、ループから脱出する。
Assumptions design-assumptions Size ofvariables: char 8 bit signed char_u 8 bit unsigned int 32 or 64 bit signed(16 might be possible with limited features) unsigned 32 or 64 bit unsigned(16 as with ints) long 32 or 64 bit signed, can hold a pointer Note that some compilers cannot handle long lines or strings.
想定していることdesign-assumptions変数のサイズ:char8bitsignedchar_u8bitunsignedint32or64bitsigned(限定された機能については16ビットもありうる)unsigned32or64bitunsigned(16ビットについてはintと同様)long32or64bitsigned,canholdapointerNoteいくつかのコンパイラは長すぎる行は文字列をうまく扱えない。
It appears that this will go on indefinitely, but in fact the value of i willeventually reach the maximum value storable in an unsigned int and adding 1 to that number will wrap-around to 0, breaking the loop.
これは永遠に動き続けるように見えるが、実際にはiの値はいずれunsignedintに格納できる最大値に達し、その値に1を加えることで0に巻き戻され、ループから脱出する。
PyArg_ParseTuple() accepts new format characters for various sizes of unsigned integers: B for unsigned char,H for unsigned short int, I for unsigned int, and K for unsigned long long.
PyArg_ParseTuple()に符号なし整数の色々なサイズのためのフォーマット文字が追加されました:unsignedcharのためのB,unsignedshortintのためのH,unsignedintのためのI,unsignedlonglongのためのK。
結果: 60, 時間: 0.0281

単語ごとの翻訳

トップ辞書のクエリ

英語 - 日本語