我已經檢測到數字上的數字量。例如,329586
有6
數字。獲取數字的最快方法?
我做了什麼,簡直就是解析數字符串,並獲得字符串的長度,如:
number.toString().length()
但是,有沒有依靠大量數字的最快方法?我必須多次使用這種方法,所以我認爲使用toString()
會影響性能。
謝謝。
我已經檢測到數字上的數字量。例如,329586
有6
數字。獲取數字的最快方法?
我做了什麼,簡直就是解析數字符串,並獲得字符串的長度,如:
number.toString().length()
但是,有沒有依靠大量數字的最快方法?我必須多次使用這種方法,所以我認爲使用toString()
會影響性能。
謝謝。
Math.floor(Math.log10(number) + 1)
// or just (int) Math.log10(number) + 1
例如:
int number = 123456;
int length = (int) Math.log10(number) + 1;
System.out.println(length);
OUTPUT:
6
@downvoter你能告訴我爲什麼-1? :) – 2013-03-23 14:31:27
這不是最快的方式,請參閱此答案:http://stackoverflow.com/questions/1306727/way-to-get-number-of-digits-in-an-int/1308407#1308407 – gaborsch 2013-03-23 14:31:35
此方法需要將數字== 0的情況分開處理。 – 2013-03-23 14:52:00
這個怎麼樣解決家釀:
int noOfDigit = 1;
while((n=n/10) != 0) ++noOfDigit;
它也工作了,謝謝! :D – BloodShura 2013-03-23 14:30:43
試試這個:
public class Main {
public static void main(String[] args) {
long num = -23;
int digits = 0;
if (num < 0)
num *= (-1);
if (num < 10 && num >= 0)
digits = 1;
else {
while(num > 0) {
num /= 10;
digits++;
}
}
System.out.println("Digits: " +digits);
}
}
也謝謝! :D但是,只是說,它不適用於0和1 ... – BloodShura 2013-03-23 14:35:03
現在它將適用於0,1和負數。 – Zelldon 2013-03-23 14:50:06
爲10,它會返回1! – Saeed 2014-04-10 18:11:54
由數你的意思是一個整數? – 2013-03-23 14:24:04