blob: c5028558ccbd0b6b9460ee6f8bfe57cf25dd9657 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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>
|