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"是什么意思?意思是?
基础教程推荐
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01