TypeScript系列教程12Number对象的基本使用

Posted 孙叫兽

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TypeScript系列教程12Number对象的基本使用相关的知识,希望对你有一定的参考价值。

目录

TypeScript Number

语法

Number 对象属性

JavaScript

NaN 实例

prototype 实例

Number 对象方法


TypeScript Number

TypeScript 与 javascript 类似,支持 Number 对象。

Number 对象是原始数值的包装对象。

语法

var num = new Number(value);

注意: 如果一个参数值不能转换为一个数字将返回 NaN (非数字值)。

Number 对象属性

下表列出了 Number 对象支持的属性:

TypeScript

console.log("TypeScript Number 属性: ");
console.log("最大值为: " + Number.MAX_VALUE);
console.log("最小值为: " + Number.MIN_VALUE);
console.log("负无穷大: " + Number.NEGATIVE_INFINITY);
console.log("正无穷大:" + Number.POSITIVE_INFINITY);

 

编译以上代码,得到以下 JavaScript 代码:

JavaScript

console.log("TypeScript Number 属性: ");
console.log("最大值为: " + Number.MAX_VALUE);
console.log("最小值为: " + Number.MIN_VALUE);
console.log("负无穷大: " + Number.NEGATIVE_INFINITY);
console.log("正无穷大:" + Number.POSITIVE_INFINITY);

输出结果为:

TypeScript Number 属性:
最大值为: 1.7976931348623157e+308
最小值为: 5e-324
负无穷大: -Infinity
正无穷大:Infinity

NaN 实例

TypeScript

var month = 0
if( month<=0 || month >12) 
    month = Number.NaN
    console.log("月份是:"+ month)
 else 
    console.log("输入月份数值正确。")

编译以上代码,得到以下 JavaScript 代码:

JavaScript

var month = 0;
if (month <= 0 || month > 12) 
    month = Number.NaN;
    console.log("月份是:" + month);

else 
    console.log("输入月份数值正确。");

输出结果为:

月份是:NaN

prototype 实例

TypeScript

function employee(id:number,name:string) 
    this.id = id
    this.name = name

var emp = new employee(123,"admin")
employee.prototype.email = "admin@sunjiaoshou.com"
console.log("员工号: "+emp.id)
console.log("员工姓名: "+emp.name)
console.log("员工邮箱: "+emp.email)

编译以上代码,得到以下 JavaScript 代码:

JavaScript

function employee(id, name) 
    this.id = id;
    this.name = name;

var emp = new employee(123, "admin");
employee.prototype.email = "admin@sunjiaoshou.com";
console.log("员工号: " + emp.id);
console.log("员工姓名: " + emp.name);
console.log("员工邮箱: " + emp.email);

输出结果为:

员工号: 123
员工姓名: admin
员工邮箱: admin@sunjiaoshou.com

Number 对象方法

Number 对象 支持以下方法:

</tr>
<tr>
<td>6.</td>
<td>valueOf()
<p>返回一个 Number 对象的原始数字值。</p></td>
序号方法 & 描述示例
1toExponential()

把对象的值转换为指数计数法。

  1. //toExponential()
  2. var num1 = 1225.30
  3. var val = num1.toExponential();
  4. console.log(val) // 输出: 1.2253e+3
2toFixed()

把数字转换为字符串,并对小数点指定位数。

  1. var num3 = 177.234
  2. console.log("num3.toFixed() 为 "+num3.toFixed()) // 输出:177
  3. console.log("num3.toFixed(2) 为 "+num3.toFixed(2)) // 输出:177.23
  4. console.log("num3.toFixed(6) 为 "+num3.toFixed(6)) // 输出:177.234000
3toLocaleString()

把数字转换为字符串,使用本地数字格式顺序

 
    
  1. var num = new Number(177.1234);
  2. console.log( num.toLocaleString()); // 输出:177.1234
 
    
  1. </td>
  2. </tr>
  3. <tr>
  4. <td>4.</td>
  5. <td>toPrecision()
  6. <p>把数字格式化为指定的长度。</p></td>
  7. <td>
 
    
  1. var num = new Number(7.123456);
  2. console.log(num.toPrecision()); // 输出:7.123456
  3. console.log(num.toPrecision(1)); // 输出:7
  4. console.log(num.toPrecision(2)); // 输出:7.1
 
    
  1. </td>
  2. </tr>
  3. <tr>
  4. <td>5.</td>
  5. <td>toString()
  6. <p>把数字转换为字符串,使用指定的基数。数字的基数是 2 ~ 36 之间的整数。若省略该参数,则使用基数 10。</p></td>
  7. <td>
 
    
  1. var num = new Number(10);
  2. console.log(num.toString()); // 输出 10 进制:10
  3. console.log(num.toString(2)); // 输出 2 进制:1010
  4. console.log(num.toString(8)); // 输出 8 进制:12

以上是关于TypeScript系列教程12Number对象的基本使用的主要内容,如果未能解决你的问题,请参考以下文章

TypeScript系列教程06基础类型

TypeScript系列教程06基础类型

TypeScript系列教程14Array数组对象的常见的方法

TypeScript系列教程13String 字符串对象的基本使用

TypeScript系列教程13Array数组对象的常见的方法

TypeScript系列教程13String 字符串对象的基本使用