gpt4 book ai didi

c++ - 如何修复错误 : ‘::max_align_t’ ?

转载 作者:行者123 更新时间:2023-11-27 22:53:48 27 4
gpt4 key购买 nike

我得到了错误

"/usr/include/c++/5/cstddef:51:11: error: ‘::max_align_t’ has not been declared using ::max_align_t; ^"

所以我应该更新库,因为我找到了这个解决方案:

“库更新之前的解决方法是在该库的任何 header 之前包含 <cstddef><stddef.h>。”
我在 Ubuntu 终端上写了一些命令,例如:

bash $ sudo apt-get install apt-file
bash $ sudo apt-file update
bash $ apt-file search stddef.h

然后错误仍然存​​在。谢谢

最佳答案

在出现这个编译错误的.cpp文件中需要添加

#include <cstddef>

在任何其他 header 之前,例如

ma​​in.cpp(已损坏)

#include <cstdio>

int main()
{
using ::max_align_t;
puts("Hello World");
return 0;
}

尝试编译:

$ g++ -std=c++11 -o test main.cpp
main.cpp: In function ‘int main()’:
main.cpp:5:10: error: ‘::max_align_t’ has not been declared
using ::max_align_t;
^

然后修复它:

ma​​in.cpp(固定)

#include <cstddef>
#include <cstdio>

int main()
{
using ::max_align_t;
puts("Hello World");
return 0;
}

编译运行:

$ g++ -std=c++11 -o test main.cpp
$ ./test
Hello World

关于c++ - 如何修复错误 : ‘::max_align_t’ ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35110786/

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