diff options
Diffstat (limited to 'files/ja/mozilla/projects/spidermonkey/jsapi_reference/jsint/index.html')
-rw-r--r-- | files/ja/mozilla/projects/spidermonkey/jsapi_reference/jsint/index.html | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/files/ja/mozilla/projects/spidermonkey/jsapi_reference/jsint/index.html b/files/ja/mozilla/projects/spidermonkey/jsapi_reference/jsint/index.html new file mode 100644 index 0000000000..c5028558cc --- /dev/null +++ b/files/ja/mozilla/projects/spidermonkey/jsapi_reference/jsint/index.html @@ -0,0 +1,42 @@ +--- +title: jsint +slug: Mozilla/Projects/SpiderMonkey/JSAPI_reference/jsint +tags: + - JSAPI_Reference + - SpiderMonkey +translation_of: Mozilla/Projects/SpiderMonkey/JSAPI_reference/jsint +--- +<p>C 言語 / C++ の整数型のエイリアスです。</p> + +<h2 id="Syntax" name="Syntax">構文</h2> + +<pre class="syntaxbox">typedef ... jsint; +typedef ... jsuint; + +typedef ... jsword; +typedef ... jsuword; + +typedef ... intN; +typedef ... uintN; + +typedef ... int8; +typedef ... uint8; +typedef ... int16; +typedef ... uint16; +typedef ... int32; +typedef ... uint32; +typedef ... int64; +typedef ... uint64; +</pre> + + +<h2 id="Description" name="Description">説明</h2> + + +<p><strong><code>jsint</code></strong> および <strong><code>jsuint</code></strong> は 32 ビットの整数型です。</p> + + +<p><strong><code>jsword</code></strong> および <strong><code>jsuword</code></strong> はポインタサイズの整数型です。</p> + + +<p><strong><code>intN</code></strong> および <strong><code>uintN</code></strong> はプラットフォームのネイティブの <code>int</code> 型と同じサイズの整数型です。</p> |