今天遇到一個要處理XSD中Integer的數值區間的計算的問題,Integer這個類型的值區間理論上是可沒有邊界的,假設目前的值是1.5E+10000, 這個數字已經達到double和Int64都沒法存儲了,同時我還要對如此大的數字進行加減運算,後來發現了BigInteger這個類能夠很好的解決我遇到的問題。^_^ide
自.net framework 4.0開始引入, 位於命名空間:spa
namespace System.Numerics
.net
設計用於存儲超大整型數字,因此只要內存夠大,存儲是沒有上限和下限的,不然若是數字過大的話,會遇到OutOfMemory的異常。設計
由於個人輸入就是一個字符串的數字,因此我調用BigInteger.Parse()方法能夠獲得一個BigInteger實例,而後就能夠對於進行+1 或者 -1的運算了code
static void Main(string[] args) { String largeNum = "1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"; var number = BigInteger.Parse(largeNum); var numberDecreaseOne = number - 1; var numberIncreaseOne = number + 1; Console.WriteLine(numberDecreaseOne); Console.WriteLine(" "); Console.WriteLine(numberIncreaseOne); Console.ReadKey(); }
輸出結果:blog
BigInteger還很不少的方法:好比 Min, Max, Substract, Multiply, Divide, Log, Pow, 等等,同時BigInteger對大量的運算符都進行了重載,很方便使用。ip
更多資料能夠參看MSDN System.Numerics.BigInteger內存