#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
JavaScript命名推荐匈牙利命名法类型前缀示例ArrayaaNameListBooleanbbVisibleFloatffMoneyFunctionfnfnMethodIntiiAgeObjectooTypeRegexp(正则表达式)rerePatternstringssName可变类型vvO...
分类:
编程语言 时间:
2014-05-27 01:26:48
阅读次数:
200
在.NET Framework 开发人员指南 的 字符转义 一节 有这样一段话。除 .$ ^
{ [ ( | ) * + ? \
外,其他字符与自身匹配。但是其中并未注明这些字符应该匹配为什么字符。为了方便自己以后查阅,也为了方便网友搜索我就写在这里了。[Sipo] 点的转义:.
==> \\u00...
分类:
其他好文 时间:
2014-05-24 07:26:51
阅读次数:
198
什么是orchid?orchid是一个构建于boost库基础上的C++库,类似于python下的gevent/eventlet,为用户提供基于协程的并发模型。什么是协程:协程,即协作式程序,其思想是,一系列互相依赖的协程间依次使用CPU,每次只有一个协程工作,而其他协程处于休眠状态。协程在控制离开时...
分类:
其他好文 时间:
2014-05-24 02:33:25
阅读次数:
370
在做网络爬虫的时候会遇到json数据格式的数据包,如果返回的是一个json格式的文件,可以使用Python
Yaml包处理数据,不需要再使用正则表达式匹配了,使用实例如https://maps-api-ssl.google.com/maps/suggest?q=hello
这个地址,我们需要que....
分类:
编程语言 时间:
2014-05-23 23:04:01
阅读次数:
484
//校验是否全由数字组成function isDigit(s){var
patrn=/^[0-9]{1,20}$/;if (!patrn.exec(s)) return falsereturn
true}//校验登录名:只能输入5-20个以字母开头、可带数字、“_”、“.”的字串function i...
分类:
其他好文 时间:
2014-05-23 22:42:29
阅读次数:
423
哎,第一,我想说官网的教程尚需完善第二:是我自己基础不好,所以费了点劲就是这样:tcp::endpoint
end_p(boost::asio::ip::address_v4::from_string("127.0.0.1"), target_port);
tcp::endpoin...
分类:
其他好文 时间:
2014-05-23 11:45:19
阅读次数:
279
一:上图,不清楚的看代码注解,很详细了二:具体代码窗体代码using System;using
System.Collections.Generic;using System.ComponentModel;using System.Data;using
System.Drawing;using Sy...