>>> def power(x): ... return x * x ... >>> power(5) 25 >>> def power(x, n): ... s = 1 ... while n > 0: ... n = n - 1 ... s = s * x ... return s ... >>> power(5, 2) 25 >>> power(5) # 原来一个参数的函数失效了 Traceback (m…
1.ES6函数参数的默认值,直接写在参数定义的后面.参数变量是默认声明的,所以不能用let或const再次声明. function Point(x = 0, y = 0) { this.x = x; this.y = y; } var p = new Point(); p // { x: 0, y: 0 } function foo(x = 5) { let x = 1; // error const x = 2; // error } 2.通常情况下,定义了默认值的参数,应该是函数的尾参数.因…
C++11 1.long long新类型 2.列表初始化 int t=0; int t={0}; int t(0); int t{0}; 注意:如果我们使用列表初始化有丢失信息的风险,则编译器报错 long double ld=3.1415926536; int a{ld},b={ld};//错误 int c(ld),d=ld;//正确,会丢失数据 3.空指针nullptr int *p1=nullptr; int *p2=0; int *p3=NULL;//尽量避免 4.constexpr类型…