ToString 方法不是亂用的

2021-06-02 02:29:00 字數 493 閱讀 3122

用這個方法,首先要保證物件不能為null,另外,本身是string型別的就沒必要用這樣的方法,多餘不是關鍵,關鍵是效率低下。

執行下面的**,你可以有所收貨。

string str = "abcdefghigklmn";

string other = null;

stopwatch sw = stopwatch.startnew();

sw.start();

for (int i = 0; i < int.maxvalue; i++)

sw.stop();

sw = null;

gc.collect();

sw = stopwatch.startnew();

sw.start();

for (int i = 0; i < int.maxvalue; i++)

sw.stop();

console.readline();

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...

toString 方法的引數

除開null 和 undefined之外所有的資料型別都是擁有tostring方法的。通常情況下我們使用tostring 方法的時候都是不用傳遞引數的,但是number型別的tostring方法是可以接收乙個引數的,這個引數是 輸出數值的基數 這個引數指定要用於數字到字串的轉換的基數 從2到36 引...