What have you found for these years?

2009-12-09

[HD]自主制作アニメーション『the TV show』

[HD]自主制作アニメーション『the TV show』
這太經典了。節奏感非常好,畫面很流暢,而且漸進效果很不錯 XD
後面大混戰很容易讓人想笑 XD

算了不說太多了,言語會讓人先入為主 XD

2 retries:

老林 said...

腦袋在轉時真的睡不著,留言給你,結論很扯
auto cannot_rec = [&](int)->int {
return cannot_rec(1);
}; //cannot recursive call

std::function<int(int)> can_rec = [&](int)->int {
return can_rec(1);
}; //can recursive call
從這點可以看出 C++0x lambda:
1.確實只是 syntactic sugar 或只能做 trivial jobs
(不否認,大部份情況下這樣就夠了)

2.要做比較複雜的東西還是靠 std::function 吧 ..

Lin Jen-Shin (godfat) said...

唔,感覺是 type 沒做完整...
所以 auto 沒辦法正常運作吧?
但這會影響能不能遞迴很怪...

Post a Comment

Note: Only a member of this blog may post a comment.



All texts are licensed under CC Attribution 3.0