在本机构建中,以下代码会打印-1
。 编译为 WASM 并在 node.js 中运行,它会打印4294967295
。 为什么结果不同?
#include <iostream>
int main() {
unsigned F = 20;
long HB = 19; // both give -1 if this is `long long`
std::cout << HB-F << std::endl;
return 0;
}
这是g++ (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0
作为本机编译器并em++ 3.1.66 (1f519517284660f4b31ef9b7f921bf6ba66c4041)
用于 emscripten 编译为 WASM。