上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 26 下一页
摘要: 转自百度百科:http://baike.baidu.com/view/3779455.htmhpp在C++中的含义hpp,其实质就是将.cpp的实现代码混入.h头文件当中,定义与实现都包含在同一文件,则该类的调用者只需要include该hpp文件即可,无需再 将cpp加入到project中进行编译。而实现代码将直接编译到调用者的obj文件中,不再生成单独的obj,采用hpp将大幅度减少调用 project中的cpp文件数与编译次数,也不用再发布烦人的lib与dll,因此非常适合用来编写公用的开源库。1、是Header Plus Plus 的简写。2、与*.h类似,hpp是C++程序头文件 。3 阅读全文
posted @ 2013-05-14 11:08 qingsun_ny 阅读(441) 评论(0) 推荐(0) 编辑
摘要: EX:C:\Program Files\Microsoft Visual Studio 8\VC\include\limits(1080) : error C2065: 'LDBL_MIN' : undeclared identifierC:\Program Files\Microsoft Visual Studio 8\VC\include\limits(1085) : error C2065: 'LDBL_MAX' : undeclared identifierC:\Program Files\Microsoft Visual Studio 8\VC\inc 阅读全文
posted @ 2013-05-14 11:08 qingsun_ny 阅读(669) 评论(0) 推荐(0) 编辑
摘要: 转自:http://blog.sina.com.cn/s/blog_686188ef0100klku.html#define是C语言中提供的宏定义命令,其主要目的是为程序员在编程时提供一定的方便,并能在一定程度上提高程序的运行效率,但学生在学习时往往不能 理解该命令的本质,总是在此处产生一些困惑,在编程时误用该命令,使得程序的运行与预期的目的不一致,或者在读别人写的程序时,把运行结果理解错误,这对 C语言的学习很不利。1 #define命令剖析1.1 #define的概念#define命令是C语言中的一个宏定义命令,它用来将一个标识符定义为一个字符串,该标识符被称为宏名,被定义的字符串称为替换 阅读全文
posted @ 2013-05-13 16:30 qingsun_ny 阅读(254) 评论(0) 推荐(0) 编辑
摘要: 不要用try to,中国式思维一个句子一般不要超过两行From that point: 从那时候起Dry run: 排演Knowledgeable有学问的address the comments处理意见state of the art 目前的发展水平ameliorate the problem 改善问题It helps organize knowledge and the potential approaches in a systematic manner.research只有单数形式Latter 后者Be capable to / be able to / could 能够 阅读全文
posted @ 2013-05-13 15:45 qingsun_ny 阅读(227) 评论(0) 推荐(0) 编辑
摘要: 转自:http://bbs.csdn.net/topics/320037283我现在编译好了一个dll工程,目录下包含了一个.dll和一个.lib文件。现在我要在另一个工程中使用这个.dll。我在新工程中做了如下配置:1.添加.h文件的查找路径.tools->option->ProjectsandSolutions->VC++Directories->Incluefiles->.h文件目录路径2.添加.lib文件的查找路径.tools->option->ProjectsandSolutions->VC++Directories->Libra 阅读全文
posted @ 2013-05-12 11:33 qingsun_ny 阅读(1230) 评论(0) 推荐(0) 编辑
摘要: CMake可以在windows和linux下编译,提高代码的重用率。CMake的编译过程和安装软件有些类似,运行exe进行安装,会在指定的文件夹下生成相关文件,CMake也一样。因为CMake是针对程序的,因此,通常在指定的文件夹下会找到一些example。CMake编译的文件是CMakelist.txt,xx.{h, cpp}。PS:CMakelist.txt这个文件我们是可以自己制作的。为了避免本篇博客过长,我将转载别人的方法到新的博客中:http://www.cnblogs.com/qingsunny/archive/2013/05/16/3081460.htmlhttp://www.c 阅读全文
posted @ 2013-05-11 16:31 qingsun_ny 阅读(1990) 评论(0) 推荐(0) 编辑
摘要: 转自:https://github.com/jim-normand/NAM/wiki/Libcitygml-installationBuilding libcityGMLDownload from Google code:http://code.google.com/p/libcitygml/(version 0.1.4 as on 2011/05/12)svn checkout http://libcitygml.googlecode.com/svn/trunk/ libcitygml-read-onlyConfigure with cmake then generate makefiles 阅读全文
posted @ 2013-05-11 16:08 qingsun_ny 阅读(852) 评论(1) 推荐(0) 编辑
摘要: 转自:http://blog.sina.com.cn/s/blog_51c1ed050100zhrc.html一,问题描述MSVCRTD.lib(crtexew.obj) : error LNK2019: 无法解析的外部符号_WinMain@16,该符号在函数 ___tmainCRTStartup 中被引用Debug\jk.exe : fatal error LNK1120: 1 个无法解析的外部命令error LNK2001: unresolved external symbol_WinMain@16debug/main.exe:fatal error LNK 1120:1 unresolv 阅读全文
posted @ 2013-05-11 15:21 qingsun_ny 阅读(3511) 评论(0) 推荐(0) 编辑
摘要: 程序中使用了某一函数,但是却没有为将该函数的库配置路径。添加库的路径就能解决这一问题。 阅读全文
posted @ 2013-05-11 14:45 qingsun_ny 阅读(733) 评论(0) 推荐(0) 编辑
摘要: 下面以新建控制台(console)项目为例:控制台对应的主函数是main();win32对应的主函数是tmain(). 阅读全文
posted @ 2013-05-11 11:22 qingsun_ny 阅读(255) 评论(0) 推荐(0) 编辑
上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 26 下一页