What does quot;#pragma commentquot; mean?(“#pragma comment是什么意思?意思是?)
问题描述
#pragma comment
在下面是什么意思?
#pragma comment(lib, "kernel32")
#pragma comment(lib, "user32")
推荐答案
#pragma comment
是一个编译器指令,它指示 Visual C++ 在生成的目标文件中留下注释.然后链接器可以在处理目标文件时读取注释.
#pragma comment
is a compiler directive which indicates Visual C++ to leave a comment in the generated object file. The comment can then be read by the linker when it processes object files.
#pragma comment(lib, libname)
告诉链接器将libname"库添加到库依赖项列表中,就像您已将其添加到 Linker 的项目属性中一样->输入->附加依赖
#pragma comment(lib, libname)
tells the linker to add the 'libname' library to the list of library dependencies, as if you had added it in the project properties at Linker->Input->Additional dependencies
请参阅 #pragma 评论MSDN
这篇关于“#pragma comment"是什么意思?意思是?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:“#pragma comment"是什么意思?意思是?


- C++ 协变模板 2021-01-01
- Stroustrup 的 Simple_window.h 2022-01-01
- 使用/clr 时出现 LNK2022 错误 2022-01-01
- 与 int by int 相比,为什么执行 float by float 矩阵乘法更快? 2021-01-01
- 静态初始化顺序失败 2022-01-01
- 如何对自定义类的向量使用std::find()? 2022-11-07
- 近似搜索的工作原理 2021-01-01
- 从python回调到c++的选项 2022-11-16
- STL 中有 dereference_iterator 吗? 2022-01-01
- 一起使用 MPI 和 OpenCV 时出现分段错误 2022-01-01