#include #include #include class SpecificWork
{private: int p_;public: SpecificWork(int value) : p_(value) { } void
operator()() { printf("Value is %....
分类:
其他好文 时间:
2014-05-27 03:06:45
阅读次数:
251
Boost 是我直接 sudo apt-get install 的,系统会帮我安装到
usr/include/boost 和 usr/lib 下,因此我可以直接使用 -lboost_system 库, 或直接 include
而不用做额外的配置#include #include #include ....
分类:
系统相关 时间:
2014-05-27 02:45:44
阅读次数:
356
1
////////////////////////////////////////////////////////////////////////// 2
//code by hzs 3 //email: huangzhesi@gmail.com 4 //Last modified: 2014-....
分类:
其他好文 时间:
2014-05-27 02:41:54
阅读次数:
218
Launching threadsA new thread is launched by
passing an object of a callable type that can be invoked with no parameter to
the constructor. The object...
分类:
其他好文 时间:
2014-05-19 19:23:42
阅读次数:
553
XAlign是一个 Xcode 的实用插件,用于对齐规范代码。1. 按首个 = 对齐2.
按宏定义群组对齐3. 按属性群组对齐1.自动安装$ curl github.so/XAlign/build/install.sh | sh
分类:
其他好文 时间:
2014-05-19 18:40:32
阅读次数:
414
遇到引用库重复定义的问题,需要解决。项目需要,同时引用ZBar和QQ授权登录SDK,由于二者均使用了Base64处理数据,XCode编译时报错:duplicate
symbol _base64_encode in:...\libzbar.a(symbol.o)...\TencentOpenAPI(b...
分类:
其他好文 时间:
2014-05-19 18:25:45
阅读次数:
236
推荐你安装 VVDocumenter-Xcode 这个插件,它会根据你的代码自动提取变量生成 JavaDoc
型 的注释格式,你需要做的只是填写注释内容而已:
上传个效果图,编译插件后重启xcode, Window->VVDocumenter自己定制风格
下载链接内有操作说明
GIT下载地址:VVDocumenter-Xcode 或VVDocument-Xcode...
分类:
其他好文 时间:
2014-05-18 15:06:08
阅读次数:
219
一、起因最近在玩Boost库。当然首先是要进行Booist库的安装和配置。于是浅墨Google了一下boost库的安装配置攻略,下载了最新版1.55的boost库,就愉悦地开始进行配置了。当进行到第五步,要在VS命令提示符中运行bootstrap.bat的时候,问题就来了,按着攻略打开Visual Studio2010命令提示符,就迎面报错:“Setting environment for usi...
分类:
其他好文 时间:
2014-05-18 08:33:52
阅读次数:
562
boost版本为:
boost_1_52_0ubuntu版本为:ubuntu-12.04.1-desktop-i386这里有两种安装方法:=============第一种:也是最简单的:进入linux系统后,输入
# apt-cache search boost你将看到很多文件信息,你会看到其中一个...
分类:
其他好文 时间:
2014-05-18 00:27:46
阅读次数:
428
转载地址:http://blog.csdn.net/yohunl/article/details/5971252
在编译好的真机版目录下的.app文件,至于生成真机可以运行的app的方法,有两种方式,一种是交99美元获得一个证书,另外一种是破解的方式,在此不再详述,本文假设你已经生成了真机上可以运行...
分类:
移动开发 时间:
2014-05-17 22:23:35
阅读次数:
478