如何在C 中將浮點數轉換為具有精度和小數位數的字串
在C 中,您可以將浮點數轉換為一個字串,同時使用各種方法指定精確度和小數位數,包括:
使用Stringstream
<code class="cpp">#include <iomanip> #include <sstream> double pi = 3.14159265359; std::stringstream stream; stream << std::fixed << std::setprecision(2) << pi; std::string s = stream.str();
在這種方法中, std::fixed 確保固定-點表示法,std::set precision 設定小數位數。
使用std::to_chars (C 17)
對於特定的技術轉換,C 17引入了std::to_chars函數:
<code class="cpp">#include <array> #include <charconv> double pi = 3.14159265359; std::array<char, 128> buffer; auto [ptr, ec] = std::to_chars(buffer.data(), buffer.data() + buffer.size(), pi, std::chars_format::fixed, 2); if (ec == std::errc{}) { std::string s(buffer.data(), ptr); // .... } else { // error handling }</code>
這裡,std::chars_format::fixed指定定點表示法,第三個參數控制小數位數。
以上是在 C 中如何將浮點數轉換為具有精確度和小數位數的字串?的詳細內容。更多資訊請關注PHP中文網其他相關文章!