xixi911

Results 5 issues of xixi911

为什么运行这么慢,有没有什么可以加速的技巧和方法

Looking forward for reply

window powershell编译没问题,但是qt调试客户端的时候构建出现下述问题: C:\Program Files\CMake\share\cmake-3.23\Modules\CMakeTestCCompiler.cmake:69: error: The C compiler "C:/Program Files (x86)/Microsoft Visual Studio/2017/Community/VC/Tools/MSVC/14.16.27023/bin/HostX64/x86/cl.exe" is not able to compile a simple test program. It fails with the following output: Change Dir:...

### Describe the bug I want to compile AWS using CMake into a static library, but I found that using the compiled static library results in an error indicating that...

guidance
p2

union Data { String s; ShortString ss; Number n; ObjectData o; ArrayData a; Flag f; };对于Data这个union,为什么可以通过data的Flag判断类型后,再去获取data中特定的类型信息,原则上union不是只能存储一种类型吗,我看最原始的版本flag和data是分开的。