gpt4 book ai didi

JavaScript 构造函数参数类型

转载 作者:行者123 更新时间:2023-11-29 18:37:18 25 4
gpt4 key购买 nike

我有一个代表汽车的 JavaScript 类,它是使用两个参数构造的,这两个参数代表汽车的品牌和型号:

function Car(make, model) {
this.getMake = function( ) { return make; }
this.getModel = function( ) { return model; }
}

有没有办法验证提供给构造函数的 make 和 model 是字符串?例如,我希望用户能够说,

myCar = new Car("Honda", "Civic");

但我不希望用户能够说,

myCar = new Car(4, 5.5);

最佳答案

function Car(make, model) {
if (typeof make !== 'string' || typeof model !== 'string') {
throw new Error('Strings expected... blah');
}
this.getMake = function( ) { return make; };
this.getModel = function( ) { return model; };
}

或者,将你得到的任何东西转换成它的字符串表示形式:

function Car(make, model) {
make = String(make);
model = String(model);
this.getMake = function( ) { return make; };
this.getModel = function( ) { return model; };
}

关于JavaScript 构造函数参数类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1548953/

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