问答详情
源自:8-5 实现继承的方式

用new创建的问题一点疑问?

请问“Student.prototype = new Person();”如果有参数需要传入的话,这么写会有些奇怪。是什么意思

提问者:Helianthuserin 2016-03-20 14:43

个回答

  • qq_慕慕947699
    2020-04-16 17:41:36

    因为这个时候传啥都不对,不传的话,Person里边的this.name=undefined;this.age=undefined;

    http://img1.mukewang.com/5e9828130001733604580102.jpg

  • 橙序猿哥哥
    2019-03-18 11:33:47

    这个和new操作符优先级有关系   https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Operators/Operator_Precedence

  • 北纬353577
    2016-03-25 16:32:05

    这个不知道