TypeScript - 数字
像 JavaScript 一样,TypeScript 支持数字值作为 Number 对象。 数字对象将数字文字转换为数字类的实例。 Number 类充当包装器,并允许对数字文字进行操作,就像它们是对象一样。
语法
var var_name = new Number(value)
如果将非数字参数作为参数传递给 Number 的构造函数,它将返回 NaN(非数字)
下表列出了 Number 对象的一组属性 −
S.No. | 属性和描述 |
---|---|
1. | MAX_VALUE JavaScript 中数字可以具有的最大可能值 1.7976931348623157E+308 |
2. | MIN_VALUE JavaScript 中数字的最小可能值是 5E-324 |
3. | NaN 等于非数字的值。 |
4. | NEGATIVE_INFINITY 小于 MIN_VALUE 的值。 |
5. | POSITIVE_INFINITY 大于 MAX_VALUE 的值。 |
6. | prototype Number 对象的静态属性。 使用原型属性将新属性和方法分配给当前文档中的 Number 对象。 |
7. | constructor 返回创建该对象实例的函数。 默认情况下,这是 Number 对象。 |
示例
console.log("TypeScript Number Properties: "); console.log("Maximum value that a number variable can hold: " + Number.MAX_VALUE); console.log("The least value that a number variable can hold: " + Number.MIN_VALUE); console.log("Value of Negative Infinity: " + Number.NEGATIVE_INFINITY); console.log("Value of Negative Infinity:" + Number.POSITIVE_INFINITY);
编译时,它将在 JavaScript 中生成相同的代码。
其输出如下 −
TypeScript Number Properties: Maximum value that a number variable can hold: 1.7976931348623157e+308 The least value that a number variable can hold: 5e-324 Value of Negative Infinity: -Infinity Value of Negative Infinity:Infinity
示例: NaN
var month = 0 if( month<=0 || month >12) { month = Number.NaN console.log("Month is "+ month) } else { console.log("Value Accepted..") }
编译时,它将在 JavaScript 中生成相同的代码。
其输出如下 −
Month is NaN
示例: prototype
function employee(id:number,name:string) { this.id = id this.name = name } var emp = new employee(123,"Smith") employee.prototype.email = "smith@abc.com" console.log("Employee 's Id: "+emp.id) console.log("Employee's name: "+emp.name) console.log("Employee's Email ID: "+emp.email)
编译时,它将生成以下 JavaScript 代码 −
//Generated by typescript 1.8.10 function employee(id, name) { this.id = id; this.name = name; } var emp = new employee(123, "Smith"); employee.prototype.email = "smith@abc.com"; console.log("Employee 's Id: " + emp.id); console.log("Employee's name: " + emp.name); console.log("Employee's Email ID: " + emp.email);
其输出如下 −
Employee’s Id: 123 Emaployee’s name: Smith Employee’s Email ID: smith@abc.com
Number 方法
Number 对象仅包含默认方法,这些方法是每个对象定义的一部分。 下面列出了一些常用的方法 −
S.No. | 方法和描述 |
---|---|
1. | toExponential()
强制数字以指数表示法显示,即使该数字在 JavaScript 通常使用标准表示法的范围内。 |
2. | toFixed()
将数字格式化为小数点右侧特定位数。 |
3. | toLocaleString()
返回当前数字的字符串值版本,其格式可能会根据浏览器的本地设置而有所不同。 |
4. | toPrecision()
定义要显示的数字总数(包括小数点左右的数字)。 负精度会引发错误。 |
5. | toString()
返回数字值的字符串表示形式。 该函数传递基数,基数是 2 到 36 之间的整数,指定用于表示数值的基数。 |
6. | valueOf()
返回数字的原始值。 |