摘要: 1KB=1024B1MB=1024KB1GB=1024MB1TB=1024GB1PB=1024TB1EB=1024PB1ZB=1024EB1YB=1024ZB 阅读全文
posted @ 2019-11-28 10:00 Truman001 阅读(3225) 评论(0) 推荐(0) 编辑
摘要: 1 std:to_string()方法只能精确到6位小数点 double d = 3.1415926535897932384; std::string str = std::to_string(d); std::cout << str << std::endl; // 3.141593 2 使用st 阅读全文
posted @ 2019-11-28 09:57 Truman001 阅读(2783) 评论(0) 推荐(0) 编辑