c_cpp 使用C ++中的无符号字符的示例

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 使用C ++中的无符号字符的示例相关的知识,希望对你有一定的参考价值。

#include <iostream>
//example using unsigned chars in C++, then casting to chars


int main() {
	unsigned char t;
	t = 60;
    std::cout << char(t) << std::endl;
    //<
    t++;
    std::cout << char(t) << std::endl;
    //=
    t += 3;
    std::cout << char(t) << std::endl;
    //@
    t--;
    std::cout << char(t) << std::endl;
    //?
}

以上是关于c_cpp 使用C ++中的无符号字符的示例的主要内容,如果未能解决你的问题,请参考以下文章

C - 结构中的无符号字符

为啥哈希中的这个字符串键被转换为符号?

如何将字节数据从套接字写入 C 中的无符号字符向量? [关闭]

C中的无符号字符连接

C#编组来自C++ DLL的无符号字符返回值[重复]

c语言中的“宏”是指啥?