Q
數據類型存儲大量
-1
A
回答
7
long long
將適合10^15,因爲它是64位。
要查看所有數據類型的限制值,可以使用<limits>
標頭。
#include <iostream>
#include <limits>
int main() {
//print maximum of various types
std::cout << "Maximum values :\n";
std::cout << "Short : " << std::numeric_limits<short>::max() << std::endl;
std::cout << "Int : " << std::numeric_limits<int>::max() << std::endl;
std::cout << "Long : " << std::numeric_limits<long>::max() << std::endl;
std::cout << "Long Long: " << std::numeric_limits<long long>::max() << std::endl;
std::cout << "Float : " << std::numeric_limits<float>::max() << std::endl;
std::cout << "Double : " << std::numeric_limits<double>::max() << std::endl;
//print minimum of various types
std::cout << "\n";
std::cout << "Minimum Values: \n";
std::cout << "Short : " << std::numeric_limits<short>::min() << std::endl;
std::cout << "Int : " << std::numeric_limits<int>::min() << std::endl;
std::cout << "Long : " << std::numeric_limits<long>::min() << std::endl;
std::cout << "Long Long: " << std::numeric_limits<long long>::min() << std::endl;
std::cout << "Float : " << std::numeric_limits<float>::min() << std::endl;
std::cout << "Double : " << std::numeric_limits<double>::min() << std::endl;
}
其輸出(在我的機器上):
Maximum values :
Short : 32767
Int : 2147483647
Long : 2147483647
Long Long: 9223372036854775807
Float : 3.40282e+038
Double : 1.79769e+308
Minimum Values:
Short : -32768
Int : -2147483648
Long : -2147483648
Long Long: -9223372036854775808
Float : 1.17549e-038
Double : 2.22507e-308
相關問題
- 1. 存儲大量數據點?
- 2. 存儲大量數據
- 3. WP7數據存儲 - 大量數據
- 4. 在單個更大的數據類型中存儲兩種數據類型
- 5. 在java中存儲大數的id基本數據類型?
- 6. 存儲大型靜態數據集
- 7. 大量存儲在C中的浮點數類型
- 8. java>存儲大量數據
- 9. 在MySQL中存儲大量數據?
- 10. Java:數據結構存儲大量字
- 11. 在android中存儲大量數據
- 12. 在localStorage中存儲大量數據
- 13. 在ASP.NET中存儲大量數據
- 14. 存儲和訪問大量數據的
- 15. 將大量數據存儲在SQLite中
- 16. 在本地存儲大量數據
- 17. 存儲和查詢大量數據
- 18. C#:存儲大量數據的my.settings
- 19. QHash存儲大量的數據
- 20. 用大量輸入存儲數據
- 21. Chrome擴展存儲大量數據
- 22. SQLite數據庫最大存儲容量
- 23. 存儲大量數據對象
- 24. 用於存儲大型JSON的SQL Server數據庫中的數據類型
- 25. 在大型數據字典中存儲變量
- 26. 將大型數據存儲種類(1TB +)備份到谷歌雲存儲
- 27. 數據類型可以存儲非常大的值C
- 28. 哪種數據類型用於存儲較大的值?
- 29. 在mysql中的數據類型大小和存儲
- 30. 如何記住.NET數據類型的存儲大小?
什麼樣的數字 - 整型,實數近似,確切的分數......? – leftaroundabout