
viusal stdio && IDE
Qyee16
给自己一个自己的家
linux/window/mac;c++/ VC/Qt/object-c/JAVA
展开
-
VS2010 编辑调试 QT5.0项目
环境:vs2010 Qt5.0.01、下载交叉编译器导入插件 下载官方 主页:http://qt-project.org/downloads Qt5 的下载链接 Visual Studio Add-in 1.2.0 for Qt5 (does not work with the Express edition) 其他版本,根据原创 2013-02-17 11:12:19 · 4796 阅读 · 0 评论 -
warning C4800: 'int' : forcing value to bool 'true' or 'false' (performance warning)
The Visual Studio compiler makes a big deal of int to bool conversions.For example, if you do: bool bPunct = ispunct(c); // causes warningYou'll get the warning. So how about this attempt at a f转载 2012-09-29 11:24:53 · 5589 阅读 · 6 评论 -
vs查看宏展开
宏在我们的代码中能经常给我们带来很大的便利,但是有些宏会造成意向不到的错误,能够查看宏展开就能够查看宏错误的根源。VS2008对编译是不保存预处理的文件信息的,而宏展开的信息就是在预编译阶段。如下图: 工程属性--》配置属性--》c/c++--》预处理器--》生成预处理文件,默认“否”是不生成预编译文件的。生成的预编译文件是项目文件下的.i文件,想要产生此文件,可选择“生成预原创 2013-07-14 01:51:33 · 9999 阅读 · 1 评论