91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

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
江山市| 钟祥市| 朔州市| 墨玉县| 西盟| 承德市| 罗山县| 马龙县| 香格里拉县| 丹寨县| 灵台县| 巩留县| 开平市| 政和县| 呼伦贝尔市| 伊金霍洛旗| 河北区| 禹州市| 翁牛特旗| 玉龙| 文成县| 肇庆市| 宜君县| 河津市| 邹平县| 祥云县| 沾益县| 清水县| 关岭| 垣曲县| 民和| 莱阳市| 登封市| 巩义市| 普兰店市| 苏尼特右旗| 繁昌县| 开化县| 石景山区| 五寨县| 汉寿县|