如何在 C++ 中把浮點數轉換為字串

Jinku Hu 2023年1月30日 2020年10月27日
  1. 在 C++ 中使用巨集表示式將浮點數轉換為字串
  2. 使用 std::to_string() 方法在 C++ 中把浮點數轉換為字串
  3. C++ 中使用 std::stringstream 類和 str() 方法將浮點數轉換為字串
如何在 C++ 中把浮點數轉換為字串

本文介紹了幾種在 C++ 中把浮點數轉換為字串的方法。

在 C++ 中使用巨集表示式將浮點數轉換為字串

前處理器巨集可以用來將常數浮點數轉換為字串值。需要注意的是,這種解決方案只適用於字面浮點數的轉換。下面的程式碼示例展示瞭如何使用字串化巨集呼叫 string 變數建構函式語句。STRING 巨集使用 # 操作符將傳遞的引數轉換為字串常量。

#include <iostream>
#include <string>

using std::cout; using std::cin;
using std::endl; using std::string;

#define STRING(num) #num

int main() {
    string num_str(STRING(123.456));
    num_str.empty() ? cout << "empty\n" :
                        cout << num_str << endl;

    return EXIT_SUCCESS;
}

輸出:

123.456

如果浮點常量被定義為另一個巨集表示式,上述程式碼應該用一個兩級巨集代替,以獲得正確的結果,如下一段程式碼所示。

#include <iostream>
#include <string>

using std::cout; using std::cin;
using std::endl; using std::string;

#define STRING(num) STR(num)
#define STR(num) #num

#define NUMBER 123.456

int main() {
    string num_str(STRING(NUMBER));
    num_str.empty() ? cout << "empty\n" :
                       cout << num_str << endl;


    return EXIT_SUCCESS;
}

輸出:

123.456

使用 std::to_string() 方法在 C++ 中把浮點數轉換為字串

to_string 函式定義在 <string> 標頭檔案中,可以將各種數值型別轉換為 string 值。該方法將一個數值作為引數,並返回 std::string 值。需要注意的是,to_string 可能會返回意想不到的結果,因為返回的字串中的重要數字可能為零,如示例程式碼所示。

#include <iostream>
#include <string>

using std::cout; using std::cin;
using std::endl; using std::string;

int main() {

    float n1 = 123.456;
    double n2 = 0.456;
    double n3 = 1e-40;
    string num_str1(std::to_string(n1));
    string num_str2(std::to_string(n2));
    string num_str3(std::to_string(n3));
    num_str1.empty() ? cout << "empty\n" : cout << num_str1 << endl;
    num_str2.empty() ? cout << "empty\n" : cout << num_str2 << endl;
    num_str3.empty() ? cout << "empty\n" : cout << num_str3 << endl;

    return EXIT_SUCCESS;
}

輸出:

123.456001
0.456000
0.000000

C++ 中使用 std::stringstream 類和 str() 方法將浮點數轉換為字串

std::stringstream 是一個強大的類,用於對字串物件進行輸入/輸出操作。在本方案中,我們利用它將一個浮點變數插入到 stringstream 物件中。然後我們呼叫 str 內建方法將數值型別處理成 string 物件。請注意,返回的 string 是一個臨時物件,所以呼叫其他方法會產生一個懸空的指標(參見示例中註釋的那行)。

#include <iostream>
#include <string>
#include <sstream>

using std::cout; using std::cin;
using std::endl; using std::string;

int main() {
    float n1 = 123.456;
    std::stringstream sstream;

    sstream << n1;
    string num_str = sstream.str();
    //auto *ptr = sstream.str().c_str(); // RESULTS in dangling pointer
    num_str.empty() ? cout << "empty\n" : cout << num_str << endl;

    return EXIT_SUCCESS;
}

輸出:

123.456
Author: Jinku Hu
Jinku Hu avatar Jinku Hu avatar

Founder of DelftStack.com. Jinku has worked in the robotics and automotive industries for over 8 years. He sharpened his coding skills when he needed to do the automatic testing, data collection from remote servers and report creation from the endurance test. He is from an electrical/electronics engineering background but has expanded his interest to embedded electronics, embedded programming and front-/back-end programming.

LinkedIn

相關文章 - C++ Float