"#pragma评论"是什么?意思是? [英] What does "#pragma comment" mean?

查看:86
本文介绍了"#pragma评论"是什么?意思是?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

#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->Input->Additional dependencies

#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评论"是什么?意思是?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆