aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/javascript/reference/global_objects/bigint/tostring/index.html
blob: 487fe80ad25eeb9c3c2118cb583b00f4a61fc2d6 (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
---
title: BigInt.prototype.toString()
slug: Web/JavaScript/Reference/Global_Objects/BigInt/toString
translation_of: Web/JavaScript/Reference/Global_Objects/BigInt/toString
---
<div>{{JSRef}}</div>

<p><strong><code>toString()</code></strong> 方法返回一个字符串,表示指定 {{jsxref("BigInt")}} 对象。 后面的 "n" 不是字符串的一部分。</p>

<div>{{EmbedInteractiveExample("pages/js/bigint-tostring.html")}}</div>



<h2 id="语法">语法</h2>

<pre class="syntaxbox"><code><var>bigIntObj</var>.toString([<var>radix</var>])</code></pre>

<h3 id="参数">参数</h3>

<dl>
 <dt><code>radix</code>{{Optional_inline}}</dt>
 <dd>可选,介于 2 到 36 之间的整数,指定用于表示数值的基数。</dd>
</dl>

<h3 id="返回值">返回值</h3>

<p>表示指定 {{jsxref("BigInt")}} 对象的字符串。</p>

<h3 id="异常">异常</h3>

<dl>
 <dt>{{jsxref("RangeError")}}</dt>
 <dd>如果 <code>toString()</code> 的基数小于 2 或大于 36, 则抛出 {{jsxref("RangeError")}}</dd>
</dl>

<h2 id="描述">描述</h2>

<p>{{jsxref("BigInt")}} 对象重写 {{jsxref("Object")}} 对象的 <code>toString()</code> 方法;它不继承 {{jsxref("Object.prototype.toString()")}}。对于 {{jsxref( "BigInt")}} 对象,<code>toString()</code> 方法返回指定基数中对象的字符串表示形式。</p>

<p><code>toString()</code> 方法解析其第一个参数,并尝试返回指定基数(base)的字符串表示形式。对于大于 10 的参数,使用字母表中的字母表示大于 9 的数字。例如,对于十六进制数(以16为基数),使用 a 到 f。</p>

<p>如果未指定基数,则假定首选基数为10。</p>

<p>如果 <code>bigIntObj</code> 为负,则保留符号。即使基数是 2,情况也是如此;返回的字符串是 <code>bigIntObj</code> 的正二进制表示,前面是一个 <code>-</code> 符号,而不是 <code>bigIntObj</code> 的两个补码。</p>

<h2 id="例子">例子</h2>

<h3 id="Using_toString">Using <code>toString</code></h3>

<pre class="brush: js">17n.toString();      // '17'
66n.toString(2);     // '1000010'
254n.toString(16);   // 'fe'
-10n.toString(2);    // -1010'
-0xffn.toString(2);  // '-11111111'
</pre>

<h3 id="Negative-zero_BigInt">Negative-zero <code>BigInt</code></h3>

<p>没有负零 <code>BigInt</code>,因为整数中没有负零。<code>-0.0</code> 是一个 IEEE 浮点概念,只出现在JavaScript {{jsxref("Number")}} 类型中。</p>

<pre class="brush: js">(-0n).toString();      // '0'
BigInt(-0).toString(); // '0'</pre>

<h2 id="标准">标准</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">Specification</th>
   <th scope="col">Status</th>
  </tr>
  <tr>
   <td>{{SpecName('ESDraft', '#sec-bigint.prototype.tostring', 'BigInt.prototype.toString()')}}</td>
   <td>{{Spec2('ESDraft')}}</td>
  </tr>
 </tbody>
</table>

<h2 id="浏览器支持">浏览器支持</h2>

<p class="hidden">The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p>

<p>{{Compat("javascript.builtins.BigInt.toString")}}</p>

<h2 id="请参阅">请参阅</h2>

<ul>
 <li>{{jsxref("BigInt.prototype.toLocaleString()")}}</li>
 <li>{{jsxref("BigInt.prototype.valueOf()")}}</li>
 <li>{{jsxref("Number.prototype.toString()")}}</li>
</ul>