通过C++学习Python
我会随便说,c++ 近年来开始"抄袭" python 么?我只会说,我在用 c++ 来学习 python.
不信?来跟着我学?
字面量
python 早在 2.6 版本中就支持将二进制作为字面量了1, 最近 c++14 逐步成熟,刚刚支持这么干2:
static const int primes = 0b10100000100010100010100010101100;
更不用说 python 在 1.5 时代就有了 raw string literals 的概念3,咱们 c++ 也不算晚,c++11里也有了类似做法:
const char* path = r"c:\python27\doc";
range loop
python 写 for 循环是一件非常舒畅的事情:
for x in mylist:
print(x);
大家都知道了,c++11里我总算也能做同样的事情了:
for (int x : mylist)
std::cout << x;
类型自动推导
python 中真的有类型的概念吗?(笑
x = "hello world"
print(x)
c++11 也学会了这招,只不过保留了老太太的裹脚布(auto)。
auto x = "hello world";
std::cout << x;
元组
python 里的元组(tuple)让人羡慕已久,这玩意 python 从一开始就有了。
triple = (5, "hello", true)
print(triple[0])
好嘛,我来用 c++11 照猫画虎:
auto triple = std::make_tuple(5, "hello", true);
std::cout << std::get<0>(triple);
有人说了,python 大法好,还能逆向解析成变量呢
x, y, z = triple
哼,c++难道不行?
std::tie(x, y, z) = triple;
lists
python 里,lists 是内置类型4,创建一个 list 无比简单:
mylist = [1, 2, 3, 4]
mylist.append(5);
以前我们可以说,这有啥,std::vector差不多也能干这事。可 python 粉较真了,您能像上面那样初始化吗?这话让 bjarne stroustrup 老爹听到了,暗自羞愧,于是在 c++11 里整出了个 initializer_list 做出回应5。
auto mylist = std::vector<int>{1,2,3,4};
mylist.push_back(5);
可人又说了,python 里创造个 dictionary 简单的跟什么一样6。
mydict = {5: "foo", 6: "bar"}
print(mydict[5])
切,c++ 本身就有 map 类型,现在又多了个哈希表 unordered_map,更像了:
auto mydict = std::unordered_map<int, const char*>{ { 5, "foo" }, { 6, "bar" } };
std::cout << mydict[5];
lambda 表达式
python 祭出大神器,1994年就有的 lambda 表达式:
mylist.sort(key = lambda x: abs(x))
c++11 开始了拙劣的模仿:
std::sort(mylist.begin(), mylist.end(), [](int x, int y){ return std::abs(x) < std::abs(y); });
而 python 在 2001 年加了一把力,引入了 nested scopes 的技术7:
def adder(amount):
return lambda x: x + amount
...
print(adder(5)(5))
c++11 不甘示弱,整出了 capture-list 的概念8。
auto adder(int amount) {
return [=](int x){ return x + amount; };
}
...
std::cout << adder(5)(5);
内置算法
python 里有诸多内置的强大算法函数,如 filter:
result = filter(mylist, lambda x: x >= 0)
c++11 倒也可以用 std::copy_if 干同样的事情:
auto result = std::vector<int>{};
std::copy_if(mylist.begin(), mylist.end(), std::back_inserter(result), [](int x){ return x >= 0; });
这样的函数在 <algorithm> 中屡见不鲜,而且都在与 python 中的某种功能遥相呼应:transform, any_of, all_of, min, max.
可变参数
python 从一开始就支持可变参数了。你可以定义一个变参的函数,个数可以不确定,类型也可以不一样。
def foo(*args):
for x in args:
print(x);
foo(5, "hello", true)
c++11 里 initializer_list 可以支持同类型个数可变的参数(c++ primer 5th 6.2.6)。
void foo(std::initializer_list<int> il) {
for (auto x : il)
std::cout << x;
}
foo({4, 5, 6});
看到这里,你是否发现用 c++ 学习 python 也不失为一种很妙的方式呢? 从这个问题的答案,可以看出 @milo yip 也是同道中人呢。
继续
觉得不错?想要大展拳脚? 看看这个 repo 吧。上面有更多的方式,教你用 c++ 来学习 python.