gpt4 book ai didi

javascript - 在 javascript 中使用私有(private)成员和方法

转载 作者:行者123 更新时间:2023-12-03 10:41:37 24 4
gpt4 key购买 nike

var test = function(id, company){
//public members
this.id = id;
this.company = company;
//private member
var age = 24;
//private method
var getAge = function(){
return this.age;
};
//public method
this.displayAge = function(){
console.log(getAge());
}
}

//invoking

var t = new test(1, 'XYZ Corp');

t.displayAge(); //undefined

为什么不显示

最佳答案

由于 this.age 未定义,因此未显示。您想要年龄

关于javascript - 在 javascript 中使用私有(private)成员和方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28755632/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com