摘要:
1. 赋值和显示采用$(info $(variable_name))显示内部变量eg:FOO=bar$(info $(FOO))运行结果:#: makebar2. 从命令行外部改变BUILD_DEBUG := yes.PHONY: allall: @echo BUILD_DEBUG is $(... 阅读全文
摘要:
我们再来看一个复杂的例子需求:我们需要对集合内每个元素加上一个特定的值代码如下:AddInt.hclass AddInt{private: int theValue; // the value to addpublic: // constructor initializes the... 阅读全文
摘要:
WikiScraper.javapackage master.haku.scrape;import org.jsoup.Jsoup;import org.jsoup.nodes.Document;import java.net.*;import java.io.*;public class Wiki... 阅读全文
摘要:
下面我们创建一个真正的爬虫例子爬取我的博客园个人主页首页的推荐文章列表和地址scrape_home_articles.pyfrom urllib.request import urlopenfrom bs4 import BeautifulSoupimport rehtml = urlopen("h... 阅读全文
摘要:
符号描述 例子(表达式)例子(匹配的字符串) *Matches the preceding character, subexpression, or bracketed character,0 or more times匹配0次或多次a*b*aaaaaaaa,aaabbbbb, bbbbbb ... 阅读全文
摘要:
1. 定义在STL中,可以把函数传递给算法,也可以把函数对象传递给算法。那么,什么是函数对象呢?我们来看下它的声明:class X{public: // define function call operator return-value operator() (arguments) const... 阅读全文
摘要:
关于lambda的基础知识,请参考上一篇的地址如下:http://www.cnblogs.com/davidgu/p/4825625.html我们再举个STL使用Lambda来进行排序的例子,如下:Person.h#ifndef _Domain_Models_Person_H_#define _Do... 阅读全文
摘要:
申请iOS开发者证书http://blog.csdn.net/htttw/article/details/7939405如何向App Store提交应用http://www.cocoachina.com/newbie/tutorial/2013/0508/6155.html 阅读全文
摘要:
Lambda始自C++ 11,是一种在表达式或语句内指定函数行为的定义式。你可以定义函数行为作为对象,以inline实参的形式传给算法作为predicate(判断式)。eg:std:transform(coll.begin(), coll.end(), // sourcecoll.begin(),/... 阅读全文
摘要:
1. What Is a Socket?(什么是套接字)A socket is an abstraction through which an application may send and receive data, in muchthe same way as an open-file han... 阅读全文