gpt4 book ai didi

c++ - fcntl 问题编译 C++

转载 作者:行者123 更新时间:2023-11-30 01:00:57 27 4
gpt4 key购买 nike

{net04:~/xxxx/wip} gcc -o  write_test write_test.c
In file included from write_test.c:4:
global.h:10: warning: `b' initialized and declared `extern'

此代码使用 fcntl.h 和定义的文件处理函数 - 如 open()、write()、close() 等。代码按预期编译和工作。

{net04:~/xxxx/wip} gcc -o  write_test write_test.cpp
In file included from write_test.cpp:4:
global.h:10: warning: `b' initialized and declared `extern'
write_test.cpp: In function `int main()':
write_test.cpp:56: error: `exit' undeclared (first use this function)
write_test.cpp:56: error: (Each undeclared identifier is reported only once for each function it appears in.)
write_test.cpp:58: error: `write' undeclared (first use this function)
write_test.cpp:62: error: `close' undeclared (first use this function)

当我将它用作 CPP 源代码时,为什么 GCC 会提示?奇怪的是,为什么它不提示 open()?这里到底发生了什么?

最佳答案

  1. C++ 对 header 的要求更为严格 - 您需要:#include <unistd.h>以正确获得指示的功能。

  2. global.h不应该定义 b - 标题不应该初始化变量。

  3. 编译时你应该使用-Wall -Werror这将迫使您修复代码中所有不可靠的部分。

  4. 获取exit()干净利落你需要#include <cstdlib> (C++) 或 #include <stdlib.h> (三)

  5. 使用 g++链接 C++ 代码,以便包含 C++ 库。使用 g++ 进行整个 C++ 编译可能是最简单的.

关于c++ - fcntl 问题编译 C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1740640/

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