- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我需要取 2 个无符号 8 位值并将它们相减,然后将此值添加到 32 位累加器。 8 位减法可能会下溢,这没关系(unsigned int 下溢是定义的行为,所以没有问题)。
我希望 static_cast<uint32_t>(foo - bar)
应该做我想做的事(其中 foo
和 bar
都是 uint8_t
)。但看起来这会先转换它们,然后然后执行 32 位减法,而我需要它作为 8 位变量下溢。我知道我可以只修改 256,但我想弄清楚为什么它以这种方式工作。
此处示例:https://ideone.com/TwOmTO
uint8_t foo = 5;
uint8_t bar = 250;
uint8_t diff8bit = foo - bar;
uint32_t diff1 = static_cast<uint32_t>(diff8bit);
uint32_t diff2 = static_cast<uint32_t>(foo) - static_cast<uint32_t>(bar);
uint32_t diff3 = static_cast<uint32_t>(foo - bar);
printf("diff1 = %u\n", diff1);
printf("diff2 = %u\n", diff2);
printf("diff3 = %u\n", diff3);
输出:
diff1 = 11
diff2 = 4294967051
diff3 = 4294967051
我会怀疑 diff3
将具有与 diff1
相同的行为, 但它实际上与 diff2
相同.
那么为什么会这样呢?据我所知,编译器应该减去两个 8 位值,然后转换为 32 位值,但事实显然不是这样。这与 static_cast
的规范有关吗?对表达式的行为?
最佳答案
对于大多数算术运算符(包括 -
),操作数会进行通常的算术转换。其中一个转换是将类型比 int
窄的任何值提升为 int
。 (标准引用:[expr]/10
)。
所以表达式 foo - bar
变成 (int)foo - (int)bar
给出 (int)-245
。然后将其转换为 uint32_t
,这将给出一个大的正数。
要获得您想要的结果,请转换为 uint8_t
而不是 uint32_t
。或者,对转换为 uint32_t
的结果使用模数运算符 %
。
无法以比 int
更窄的精度直接进行计算
关于c++ - 为什么 static_cast 对表达式进行分配?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27931157/
对引用 static_cast 的引用是否与指向指针 static_cast 的指针具有相同的运行时间成本? 例如 class B; class A: public class B; A obj; A
在下面的示例中,编译器接受 static_cast 向下转换,导致未定义的行为,而我认为 static_cast 完全是为了安全(C 风格转换无法提供) . #include class Base
在以下代码中(取自有效的 C++): class A { .... char& operator[](std::size_t position) // now just cal
我正在尝试理解 Pybind11 docs here 中使用的静态转换.具体来说,他们使用语法 static_cast(&Pet::set) 因为在我努力解释并应用到我自己的代码之前我还没有见过这种语
本题不涉及多态,即不涉及虚方法,不涉及虚基类。以防万一,我的案子不涉及这些。 假设我有一个类 Derived它有一个明确的可访问父类型 Base ,没有多态性(没有虚方法,没有虚基类),但可能涉及间接
我看到有人建议使用 static_cast(static_cast(p))而不是重新解释类型转换。 我不明白为什么这样更好,谁能解释一下? 为了便于讨论,这里有一个需要 reinterpret_cas
如果我执行以下操作,一切正常: char* cp = "abc"; void* vp = NULL; vp = static_cast(cp);//ok cp = static_cast(vp);//
让我们有一个名为 Y 的重载函数: void Y(int& lvalue) { cout void f(T&& x) { Y( static_cast(x) ); // Using sta
当你动态分配了一个 char * 类型的缓冲区并想将它转换为特定类型时,你是否应该使用类似的东西 reinterpret_cast(char *) 或者类似的东西 static_cast(static
这是来自 std::enable_if 教程中的示例。 这里有更多的上下文: // handle signed types template auto incr1(Int& target, Int a
我正在阅读 Scott Meyers 的 Effective C++ 3rd。 在第 3 项中: Use const whenever possible. In order to use const
我是 C++ 编程的初学者...我正在练习,遇到了这个问题...这里我尝试在复合运算符上使用 static_cast...我实际上正在尝试除两个整数并得到双倍的答案...这是代码: #include
如果我有两个类: 1) 员工 2) 工程师是派生 从员工 3) 经理是派生 从员工 我被告知(并自己尝试过)以下内容无法编译: Employee employee("John Smith"); Eng
我正在尝试实现一类数值 vector 。我正在使用类似于 STL vector 的 Qt 模板 QVector typedef float ArithmeticF; typedef QVector V
是否使用 static_cast 将 const unsigned char& 转换为 const unsigned long long& 已定义? constexpr unsigned char a
#include class A { public: A() { std::cout (a_obj); // This isn't safe. b_obj
我在我们的生产环境中遇到了以下代码结构(但是大大简化了)。 #include typedef struct { char entry[10]; } inn_struct; typedef s
我有以下两个类: class B; class A { public: A(); operator B() const; }; class B {
我有以下代码片段 class base { public: virtual void MyMethod() { std::cout (b); d->MyMeth
这是一个 discussion on stackoverflow四种显式转换中的一种。但我在投票最多的答案中遇到了一个问题。 引用自投票最多的 wiki 答案: static_cast can als
我是一名优秀的程序员,十分优秀!