纯函数 一.纯函数 定义:纯函数是指不依赖并且不修改其作用域之外的函数.通过以下几个示例来认识纯函数: var a = 10; //纯函数 function foo(num){ return num + 5; } //非纯函数:函数内依赖了外部变量a function fun(num){ return num + a; } console.log(foo(a)); //15 -->这里传入a变量为什么还是纯函数呢? console.log(fun(5)); 给函数传入参数时,函数是通过自身的形参…
warning: specialization of ‘template<class _Iterator> struct std::iterator_traits’ in different namespace [-fpermissive] template<> class std::iterator_traits<Token_ptr>{ public: typedef Word difference_type; typedef Word value_type; typ…