了解对象方法和实例方法,但是静态方法我跑去问PHP后端,也解释不太清楚咧,只是说无须实例化即可调用。
它的作用?不能继承下来?那为何不直接用原型的方式?
function Fn() {
}
Fn.hello = function() {
console.log('say static');
}
Fn.prototype.hello = function () {
console.log('say prototype');
}
天蓬老师2017-04-11 10:33:44
function Fn() {
this.hello = function () {
console.log('实例方法');
}
}
Fn.hello = function() {
console.log('静态方法');
}
Fn.prototype.hello = function () {
console.log('实例共享方法(对象方法)');
}
以上就包含你说的3种方法
为什么要有静态方法?
有些东西是不需要实例的,只要有类就存在的,比如Array.isArray(obj);
判断一个对象是不是数组,如果这个方法是数组实例才有的,那我还判断个毛啊。