能不能在构造函数中使用return呢?答案是可以的,但是return在使用过程中要知道一些规则
我们通过代码的形式,来了解了解
function TestA(name){this.name = namereturn 1
}
function TestB(name){this.name = namereturn 'test'
}
function TestC(name){this.name = namereturn false
}
function TestD(name){this.name = namereturn [1,2,3]
}
function TestE(name){this.name = namereturn {}
}
我们在上面定义了5个构造函数,让他们分别返回不同的基本类型和引用类型的数据
下面我们来实例化这些构造函数,看看结果
let testA = new TestA('lili')
testA. // TestA {name: 'lili'}
let testB = new TestB('lili')
testB. // TestA {name: 'lili'}
let testC = new TestC('lili')
testC // TestA {name: 'lili'}
let testD = new TestD('lili')
testD. //[1, 2, 3]
let testE = new TestE('lili')
testE. // {}
我们发现:
在构造函数中返回基本类型的数据,return不起作用;
在构造函数中返回引用类型的数据,实例化对象会返回return中的数据
这里请注意构造函数实例化对象要区别于函数的执行
let testA = TestA('lili')
testA // 1
let testB = TestB('lili')
testB //'test'
let testC = TestC('lili')
testC //false
let testD = TestD('lili')
testD //[1, 2, 3]
let testE = TestE('lili')
testE // {}
是不是清楚了,利用new实例的对象和函数执行时return的情况不一样哈