活到老,学到老
发布时间:2016-08-21 12:46:31
#include <iostream> #include <vector> #include <algorithm>//for_each头文件 using namespace std; int main(int argc, char *argv[]) { vector <int> vec; for (int i = 1; i <=10; i++) { &.........【阅读全文】
发布时间:2016-08-20 12:24:06
lambda表达式的语法定义如下: [capture] (parameters) mutable ->return-type {statement};参数解释: [capture]: 捕捉列表。 捕捉列表总是出现在lambda函数的开始处。实质上,[]是lambda引出符.........【阅读全文】
发布时间:2016-08-14 23:25:28
download.h#ifndef DOWNLOAD_H #define DOWNLOAD_H#include <iostream>#include <string>#include <map>#include <thread>#include <mutex>#include <stdio.h>#include <stdlib.h>.........【阅读全文】
发布时间:2016-08-14 22:45:05
CURLE_OK(0) 成功。 CURLE_UNSUPPORTED_PROTOCOL(1)你的URL传递给libcurl的使用协议,这libcurl的不支持。支持可能是你没有使用一个编译时的选项,它可以是一个拼写错的协议字符串,或者只是一个协议的libcurl没有代码。 CURLE_FAILED_INIT(2)非常早期的初始化代码失败。这可能是内部错误或问.........【阅读全文】
发布时间:2016-08-13 11:18:08
json:{ "test":{ "test1":{ "a":1, "b.........【阅读全文】