转载自: http://www.codeceo.com/article/cpp-lambda.htmlC++ 11 对LB的支持,对于喜欢Functional Programming的人来说,无疑是超好消息。它使得C++进入了和C#,JavaScript等现代流行的程序设计语言所代表的名人堂。不熟悉...
分类:
编程语言 时间:
2014-09-13 18:29:45
阅读次数:
235
采用C++实现网络资源、文件的读取:回调函数、functional函数模版、istream流。libcurl与window.h实现方法。URL
分类:
其他好文 时间:
2014-09-12 16:57:23
阅读次数:
145
本文主要记录自己对几个高级语法概念的理解:匿名函数、lambda表达式、闭包、装饰器。
这几个概念并非Python特有,但本文只限于用Python做说明。
1. 匿名函数
匿名函数(anonymous function)是指未与任何标识符绑定的函数,多用在functional
programming languages领域,典型应用场合:
1) 作为参数传给高阶函数(higher-or...
分类:
编程语言 时间:
2014-09-12 13:36:13
阅读次数:
344
Why should we use convolution?
问题限定: 仅对离散信号做分析
首先要回答什么是卷积的问题.
In mathematics and,
in particular, functional analysis, convolution is
a mathematical operation on...
分类:
其他好文 时间:
2014-09-11 20:59:12
阅读次数:
222
In computer science, functional programming is a programming paradigm, a style of building the structure and elements of computer programs, that treat...
分类:
其他好文 时间:
2014-09-09 11:07:08
阅读次数:
225
使用ReactiveCocoa实现iOS平台响应式编程ReactiveCocoa和响应式编程在说ReactiveCocoa之前,先要介绍一下FRP(Functional Reactive Programming,响应式编程),在维基百科中有这样一个样例介绍:在命令式编程环境中,a = b + c 表...
分类:
移动开发 时间:
2014-09-04 18:58:30
阅读次数:
505
Bean bags for many years. Although it is an old design, people feel like it, and still one of the most sought after tools today. If you are looking fo...
分类:
其他好文 时间:
2014-08-28 13:01:39
阅读次数:
263
嗯,上一篇已经介绍了面向过程编程的语法知识,接下来是最后的也是最重要的一个部分:这是本系列的最后一篇,先介绍两个描述:描述一:C++有四个主流部分:betterC,ADT,OO,和GP,以及发展中的functional,generative,metaprogramming等。BetterC,只增加函...
分类:
编程语言 时间:
2014-08-26 22:56:56
阅读次数:
229
// functional_mem_fun.cpp// compile with: /EHsc#include #include #include #include #include using namespace std;class StoreVals { int val;public:...
分类:
其他好文 时间:
2014-08-21 22:38:34
阅读次数:
211
今天的C++已经是个多重范型编程语言(multiparadigm programming language),一个同时支持过程形式(procedural)、面向对象形式(object-oriented)、函数形式(functional)、泛型形式(generic)、元编程形式(metaprogram...
分类:
编程语言 时间:
2014-08-21 16:45:44
阅读次数:
227