TypeScript Number

TypeScript Number

TypeScript 與 JavaScript 類似,支持 Number 對(duì)象。

Number 對(duì)象是原始數(shù)值的包裝對(duì)象。

 

1. 定義語(yǔ)法

var num = new Number(value);

注意: 如果一個(gè)參數(shù)值不能轉(zhuǎn)換為一個(gè)數(shù)字將返回 NaN (非數(shù)字值)。

 

2. Number 對(duì)象屬性

下表列出了 Number 對(duì)象支持的屬性:

序號(hào) 屬性 & 描述
1.

MAX_VALUE

可表示的最大的數(shù),MAX_VALUE 屬性值接近于 1.79E+308。大于 MAX_VALUE 的值代表 "Infinity"。

2.

MIN_VALUE

可表示的最小的數(shù),即最接近 0 的正數(shù) (實(shí)際上不會(huì)變成 0)。最大的負(fù)數(shù)是 -MIN_VALUE,MIN_VALUE 的值約為 5e-324。小于 MIN_VALUE ("underflow values") 的值將會(huì)轉(zhuǎn)換為 0。

3.

NaN

非數(shù)字值(Not-A-Number)。

4.

NEGATIVE_INFINITY

負(fù)無(wú)窮大,溢出時(shí)返回該值。該值小于 MIN_VALUE。

5.

POSITIVE_INFINITY

正無(wú)窮大,溢出時(shí)返回該值。該值大于 MAX_VALUE。

6.

prototype

Number 對(duì)象的靜態(tài)屬性。使您有能力向?qū)ο筇砑訉傩院头椒ā?/p>

7.

constructor

返回對(duì)創(chuàng)建此對(duì)象的 Number 函數(shù)的引用。

1) 屬性范例

console.log("TypeScript Number 屬性: "); 
console.log("最大值為: " + Number.MAX_VALUE); 
console.log("最小值為: " + Number.MIN_VALUE); 
console.log("負(fù)無(wú)窮大: " + Number.NEGATIVE_INFINITY); 
console.log("正無(wú)窮大:" + Number.POSITIVE_INFINITY);

編譯以上代碼,得到以下 JavaScript 代碼:

console.log("TypeScript Number 屬性: ");
console.log("最大值為: " + Number.MAX_VALUE);
console.log("最小值為: " + Number.MIN_VALUE);
console.log("負(fù)無(wú)窮大: " + Number.NEGATIVE_INFINITY);
console.log("正無(wú)窮大:" + Number.POSITIVE_INFINITY);

輸出結(jié)果為:

TypeScript Number 屬性:
最大值為: 1.7976931348623157e+308
最小值為: 5e-324
負(fù)無(wú)窮大: -Infinity
正無(wú)窮大:Infinity

2) NaN 范例

var month = 0 
if( month<=0 || month >12) { 
    month = Number.NaN 
    console.log("月份是:"+ month) 
} else { 
    console.log("輸入月份數(shù)值正確。") 
}

編譯以上代碼,得到以下 JavaScript 代碼:

var month = 0;
if (month <= 0 || month > 12) {
    month = Number.NaN;
    console.log("月份是:" + month);
}
else {
    console.log("輸入月份數(shù)值正確。");
}

輸出結(jié)果為:

月份是:NaN

3) prototype 范例

function employee(id:number,name:string) { 
    this.id = id 
    this.name = name 
} 
 
var emp = new employee(123,"admin") 
employee.prototype.email = "admin@yapf.com" 
 
console.log("員工號(hào): "+emp.id) 
console.log("員工姓名: "+emp.name) 
console.log("員工郵箱: "+emp.email)

編譯以上代碼,得到以下 JavaScript 代碼:

function employee(id, name) {
    this.id = id;
    this.name = name;
}
var emp = new employee(123, "admin");
employee.prototype.email = "admin@yapf.com";
console.log("員工號(hào): " + emp.id);
console.log("員工姓名: " + emp.name);
console.log("員工郵箱: " + emp.email);

輸出結(jié)果為:

員工號(hào): 123
員工姓名: admin
員工郵箱: admin@yapf.com

 

3. Number 對(duì)象方法

Number對(duì)象 支持以下方法:

序號(hào) 方法 & 描述 范例
1. toExponential()

把對(duì)象的值轉(zhuǎn)換為指數(shù)計(jì)數(shù)法。

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

把數(shù)字轉(zhuǎn)換為字符串,并對(duì)小數(shù)點(diǎn)指定位數(shù)。

var num3 = 177.234 
console.log("num3.toFixed() 為 "+num3.toFixed())    // 輸出:177
console.log("num3.toFixed(2) 為 "+num3.toFixed(2))  // 輸出:177.23
console.log("num3.toFixed(6) 為 "+num3.toFixed(6))  // 輸出:177.234000
3. toLocaleString()

把數(shù)字轉(zhuǎn)換為字符串,使用本地?cái)?shù)字格式順序。

var num = new Number(177.1234); 
console.log( num.toLocaleString());  // 輸出:177.1234
4. toPrecision()

把數(shù)字格式化為指定的長(zhǎng)度。

var num = new Number(7.123456); 
console.log(num.toPrecision());  // 輸出:7.123456 
console.log(num.toPrecision(1)); // 輸出:7
console.log(num.toPrecision(2)); // 輸出:7.1
5. toString()

把數(shù)字轉(zhuǎn)換為字符串,使用指定的基數(shù)。數(shù)字的基數(shù)是 2 ~ 36 之間的整數(shù)。若省略該參數(shù),則使用基數(shù) 10。

var num = new Number(10); 
console.log(num.toString());  // 輸出10進(jìn)制:10
console.log(num.toString(2)); // 輸出2進(jìn)制:1010
console.log(num.toString(8)); // 輸出8進(jìn)制:12
6. valueOf()

返回一個(gè) Number 對(duì)象的原始數(shù)字值。

var num = new Number(10); 
console.log(num.valueOf()); // 輸出:10

下一節(jié):TypeScript String 字符串

TypeScript 教程

相關(guān)文章
亚洲国产精品第一区二区,久久免费视频77,99V久久综合狠狠综合久久,国产免费久久九九免费视频