溫馨提示×

c++ string如何轉(zhuǎn)int64

c++
小億
136
2024-09-05 10:01:57
欄目: 編程語言

在 C++ 中,你可以使用 std::stoll(string to long long)函數(shù)將一個 std::string 轉(zhuǎn)換為 int64_t

#include<iostream>
#include<string>
#include <cstdint>

int main() {
    std::string str = "123456789012345";
    int64_t num;

    try {
        num = std::stoll(str);
        std::cout << "Converted number: "<< num<< std::endl;
    } catch (const std::invalid_argument& e) {
        std::cerr << "Invalid argument: " << e.what()<< std::endl;
    } catch (const std::out_of_range& e) {
        std::cerr << "Out of range: " << e.what()<< std::endl;
    }

    return 0;
}

這個示例中,我們嘗試將一個字符串轉(zhuǎn)換為 int64_t。如果轉(zhuǎn)換成功,我們將輸出轉(zhuǎn)換后的數(shù)字。如果發(fā)生錯誤(例如,字符串不是有效的數(shù)字或數(shù)字超出了 int64_t 的范圍),我們將捕獲相應(yīng)的異常并輸出錯誤信息。

0