toString 方法的引數

2022-05-21 21:18:08 字數 512 閱讀 9249

除開null 和 undefined之外所有的資料型別都是擁有tostring方法的。  

通常情況下我們使用tostring()方法的時候都是不用傳遞引數的,但是number型別的tostring方法是可以接收乙個引數的,這個引數是「輸出數值的基數」。

這個引數指定要用於數字到字串的轉換的基數(從2到36), 引數不在這個範圍之間時,報錯!如果未指定  引數,則預設值為 10。 也就是說它可以指定該數值是多少進製的格式輸出,下面有幾個例子:

var num = 16;

console.log(num.tostring());         // 16

console.log(num.tostring(2));       // 10000 

console.log(num.tostring(8));      //  20

console.log(num.tostring(10))     // 16

console.log(num.tostring(16))     // 10

toString引數說明

格式化數值 有時,我們可能需要將數值以一定的格式來呈現,就需要對數值進行格式化。我們使用格式字串指定格式。格式字串採用以下形式 axx,其中 a 為格式說明符,指定格式化型別,xx 為精度說明符,控制格式化輸出的有效位數或小數字數。格式說明符 說明 示例 輸出 c 貨幣 2.5.tostring c...

toString方法的學習

public class student system.out.println student stu 會發現輸入student f72617 原因是 printstream類 public void println object x string 類 public static string va...

ToString 方法的介紹

字元型轉換為字串 c 貨幣 2.5.tostring c 2.50 d 10進製數 25.tostring d5 25000 e 科學型 25000.tostring e 2.500000e 005 f 固定點 25.tostring f2 25.00 f?表示保持幾位小數 g 常規 2.5.tos...