JavaScript中没有官方的访问级别语法,JavaScript没有类似于Java语言智能搞得private或protected这样的访问级别关键字,默认情况下,,对象中所有的成员都是公有和可访问的,但在JavaScript中可以实现与私有或专有属性类似的访问级别效果。实现私有方法或属性,请使用闭包:
function test(){
//私有成员
var destination = "test";
this.getDestination = function(){
return destination;
}
}
var deloren = new test();
console.log(deloren.getDestination());
时间: 2024-10-01 05:43:56