int2String速度探討

來源:互聯網
上載者:User
速度
import java.util.*;import java.io.*;import java.sql.*;import java.text.*;import java.util.regex.*;public class Test{ public static void main(String[] args) throws Exception{  long starttime = System.currentTimeMillis();  String s = "";  boolean flag = true; //變化的環境下

  //在恒定的環境下,使用以下方法速度最快  for(int i = 0;i < 999999;i++){   if(flag){    s = i + "";   }else{     s = 9 + "";   }  }  System.out.println(System.currentTimeMillis()-starttime);

  //在變化的環境下,使用以下方法速度最快  starttime = System.currentTimeMillis();  for(int i = 0;i < 999999;i++){   if(flag){    s = Integer.toString(i);   }else{     s = Integer.toString(9);   }  }  System.out.println(System.currentTimeMillis()-starttime);    //這種方法似乎是多餘的  starttime = System.currentTimeMillis();  for(int i = 0;i < 999999;i++){   if(flag){    s = String.valueOf(i);   }else{     s = String.valueOf(9);   }  }  System.out.println(System.currentTimeMillis()-starttime);

  //無論在什麼情況下,速度和效率都是最差的  starttime = System.currentTimeMillis();  for(int i = 0;i < 999999;i++){   if(flag){    s = new Integer(i).toString();   }else{     s = new Integer(9).toString();   }  }  System.out.println(System.currentTimeMillis()-starttime); }};


聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.