亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

C++程序中如何轉換ushort與其他類型

c++
小樊
89
2024-08-27 12:05:22
欄目: 編程語言

在 C++ 中,unsigned short(通常簡寫為 ushort)是一種無符號整數類型,用于存儲非負整數

  1. 轉換為 int: 由于 int 可以容納任何 unsigned short 的值,因此可以直接將 unsigned short 值賦給 int 變量。
#include<iostream>

int main() {
    unsigned short ushortValue = 42;
    int intValue = ushortValue;

    std::cout << "ushort value: " << ushortValue<< std::endl;
    std::cout << "int value: "<< intValue<< std::endl;

    return 0;
}
  1. 轉換為 float 或 double: 要將 unsigned short 轉換為浮點數,可以使用靜態類型轉換(static_cast)。
#include<iostream>

int main() {
    unsigned short ushortValue = 42;
    float floatValue = static_cast<float>(ushortValue);
    double doubleValue = static_cast<double>(ushortValue);

    std::cout << "ushort value: " << ushortValue<< std::endl;
    std::cout << "float value: "<< floatValue<< std::endl;
    std::cout << "double value: "<< doubleValue<< std::endl;

    return 0;
}
  1. 轉換為字符串: 要將 unsigned short 轉換為字符串,可以使用 std::to_string() 函數。
#include<iostream>
#include<string>

int main() {
    unsigned short ushortValue = 42;
    std::string stringValue = std::to_string(ushortValue);

    std::cout << "ushort value: " << ushortValue<< std::endl;
    std::cout << "string value: "<< stringValue<< std::endl;

    return 0;
}

請注意,這些示例僅適用于 C++11 及更高版本。如果你使用的是較舊的 C++ 標準,可能需要使用其他方法進行類型轉換。

0
富平县| 华亭县| 鹿泉市| 措美县| 镇原县| 庄河市| 松溪县| 崇文区| 岱山县| 华坪县| 平顺县| 临邑县| 洛隆县| 汾西县| 长泰县| 九江市| 怀化市| 济源市| 汝南县| 淮南市| 肥城市| 抚远县| 昌黎县| 通道| 弥勒县| 潢川县| 长乐市| 溧阳市| 锡林浩特市| 景洪市| 郯城县| 礼泉县| 河南省| 西畴县| 任丘市| 三台县| 兴隆县| 桐城市| 金阳县| 报价| 东台市|