#1、构造函数模块 现有1个exports为构造函数的模块,例:
var Cat = function() {
this.name = 'cat';
};
Cat.prototype.eat = function() {
return 'fish';
};
module.exports = Cat;
#2、实例化构造函数 ##2.1、方法1
var cat = new require('./_test.js')();
##2.1、方法2
var cat = new (require('./_test.js'))();
##2.3、方法3
var Cat = require('./_test.js');
var cat = new Cat();
3种实例化方法,其中第1种会报错,2和3是对的,为什么1是错的而2是对的呢?
3 回复