成功编译,但有警告信息. ___2.cpp: In function 'int main()': ___2.cpp:7:5: warning: 'char* gets(char*)' is deprecated (declared at /usr/include/stdio.h:638) [-Wdeprecated-declarations] gets(str); ^ ___2.cpp:7:13: warning: 'char* gets(char*)' is deprecated (declared at /usr/include/stdio.h:638) [-Wdeprecated-declarations] gets(str); ^ /tmp/cce6zYD0.o: In function `main': ___2.cpp:(.text.startup+0x15): warning: the `gets' function is dangerous and should not be used.
时间: 2024-02-01 12:04:23 浏览: 353
这个警告信息是因为使用了 `gets()` 函数,这个函数已经被标记为不安全的函数,因为它无法限制输入的长度,存在缓冲区溢出的风险。因此,在新的 C 标准中,这个函数已经被废弃了,建议使用更安全的函数 `fgets()` 来代替它。
如果你使用的是老的编译器,那么可能还支持 `gets()` 函数,但是在新的编译器中,为了安全起见,不建议使用 `gets()` 函数。
如果你想消除这个警告,可以将程序中的 `gets()` 函数替换为 `fgets()` 函数,如下所示:
```c
#include <stdio.h>
#include <string.h>
int main() {
char str[80];
fgets(str, 80, stdin); // 输入字符串
int len = strlen(str);
if (str[len-1] == '\n') {
str[len-1] = '\0'; // 去掉换行符
}
printf("输入的字符串为: %s\n", str);
return 0;
}
```
这样就可以避免使用不安全的 `gets()` 函数了。需要注意的是,在使用 `fgets()` 函数读入字符串后,输入缓冲区中可能会有一个换行符,因此需要在字符串末尾手动添加一个 '\0',并将换行符替换为 '\0'。
相关问题
In file included from ../sdm_code_cp/imagecamera.h:8:0, from ../sdm_code_cp/main.cpp:17: ../sdm_code_cp/function.h: In function ‘void yuyv_to_rgb888(unsigned char*, unsigned char*, int, int)’: ../sdm_code_cp/function.h:19:18: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(i = 0; i <= (imgWidth * imgHeight) / 2 ;i++) ~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from ../sdm_code_cp/imagedrivecamera.h:9:0, from ../sdm_code_cp/main.cpp:18: ../sdm_code_cp/function.h: In function ‘void yuyv_to_rgb888(unsigned char*, unsigned char*, int, int)’: ../sdm_code_cp/function.h:2:6: error: redefinition of ‘void yuyv_to_rgb888(unsigned char*, unsigned char*, int, int)’ void yuyv_to_rgb888(unsigned char* yuv,unsigned char* rgb, int imgWidth, int imgHeight)
这是一个编译错误和警告。警告是由于在循环中将有符号变量和无符号变量进行比较,可以通过将循环条件中的i从有符号类型更改为无符号类型来解决。错误是由于在函数头文件中重新定义了函数,可能是由于头文件被包含了多次导致的。可以通过添加宏定义保护来解决这个问题,如下所示:
#ifndef FUNCTION_H
#define FUNCTION_H
void yuyv_to_rgb888(unsigned char* yuv, unsigned char* rgb, int imgWidth, int imgHeight);
#endif
编译报错如下:CMakeFiles/t3_node.dir/src/main.cpp.o: In function `boost::asio::ssl::detail::openssl_init_base::do_init::~do_init()': main.cpp:(.text._ZN5boost4asio3ssl6detail17openssl_init_base7do_initD2Ev[_ZN5boost4asio3ssl6detail17openssl_init_base7do_initD5Ev]+0x12): undefined reference to `CONF_modules_unload' CMakeFiles/t3_node.dir/src/main.cpp.o: In function `boost::asio::error::detail::ssl_category::message[abi:cxx11](int) const': main.cpp:(.text._ZNK5boost4asio5error6detail12ssl_category7messageB5cxx11Ei[_ZNK5boost4asio5error6detail12ssl_category7messageB5cxx11Ei]+0x2c): undefined reference to `ERR_reason_error_string' main.cpp:(.text._ZNK5boost4asio5error6detail12ssl_category7messageB5cxx11Ei[_ZNK5boost4asio5error6detail12ssl_category7messageB5cxx11Ei]+0x48): undefined reference to `ERR_lib_error_string' main.cpp:(.text._ZNK5boost4asio5error6detail12ssl_category7messageB5cxx11Ei[_ZNK5boost4asio5error6detail12ssl_category7messageB5cxx11Ei]+0x59): undefined reference to `ERR_func_error_string' collect2: error: ld returned 1 exit status t3/CMakeFiles/t3_node.dir/build.make:318: recipe for target '/smartview/devel/lib/t3/t3_node' failed make[2]: *** [/smartview/devel/lib/t3/t3_node] Error 1 CMakeFiles/Makefile2:3555: recipe for target 't3/CMakeFiles/t3_node.dir/all' failed make[1]: *** [t3/CMakeFiles/t3_node.dir/all] Error 2 make[1]: *** Waiting for unfinished jobs.... [ 96%] Built target play_node [100%] Built target smartview_handler Makefile:145: recipe for target 'all' failed make: *** [all] Error 2 Invoking "make -j20 -l20" failed
这个错误提示表明在链接时找不到OpenSSL库。你可以尝试在CMakeLists.txt文件中添加链接OpenSSL库的代码,如下所示:
```
find_package(OpenSSL REQUIRED)
target_link_libraries(your_project_name OpenSSL::SSL OpenSSL::Crypto)
```
其中,your_project_name是你的项目名。这个代码片段会在链接你的项目时添加OpenSSL库。如果仍然无法解决问题,你可以检查一下OpenSSL库是否正确安装并且库的路径是否正确添加到系统路径中。
阅读全文