//闭包 python java c c++ c#
function a(){
console.log("this is a");
function b(){
console.log("this is b");
}
return b;
}
a()();
//闭包 python java c c++ c#
function a(){
console.log("this is a");
function b(){
console.log("this is b");
}
return b;
}
a()();