gpt4 book ai didi

c++ - 为什么我不能在 uint8_t 类型中存储小整数?

转载 作者:行者123 更新时间:2023-12-02 05:13:24 38 4
gpt4 key购买 nike

如果我将数字 2 存储在 uint8_t 类型中并尝试打印它,我什么也得不到。当然,8 位整数可以存储数字 2。我缺少什么?

示例代码:

#include <iostream>
#include <cstdint>

int main() {
std::uint8_t x = 2;
std::cout << "x = " << x << "\n";
}

输出:

x = 

最佳答案

uint8_t 通常是 unsigned char 的类型定义,并将作为字符打印。

2 是一些不可打印的字符值,因此您不会得到任何有意义的输出。

您可以使用+x将x提升为整数,并且它将按原样打印。

关于c++ - 为什么我不能在 uint8_t 类型中存储小整数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33585386/

38 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com