码迷,mamicode.com
首页 > 编程语言 > 详细

Python中的闭包

时间:2015-06-29 19:53:37      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:

简单的闭包的栗子:

def counter(statr_at = 0):
	count = 1
	def incr():
		nonlocal count #注意由于count类型为immutable,所以需要声明清楚在此局部作用域内引用的是外部作用域那个count
		count += 1
		return count
	return incr
>>> count = counter(4)
>>> count()
2
>>> count()
3
>>> count()
4
>>> count()
5
>>> count()
6
>>> count()
7
>>> count()
8
>>> count()
9
>>> count()
10
>>> count()
11

 这种行为可用C++11模拟如下:

#include<iostream>
#include<memory>
using namespace std;
class Count{
public:
 Count(const shared_ptr<int>& p) :sp(p){}
 int operator()(){
  (*sp)++;
  return (*sp);
 }
private:
 shared_ptr<int> sp;
};
Count func(int k){
 shared_ptr<int> sp = make_shared<int>(k);
 return Count(sp);
}
int main(){
  auto c = func(10);
  cout << c() << endl;
  cout << c() << endl;
  cout << c() << endl;
 return 0;
}

 

Python中的闭包

标签:

原文地址:http://www.cnblogs.com/hustxujinkang/p/4608043.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!