博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
2019-06-18 今日头条面试题。 合理设计这两个类。 2。 student 继承person 3 不能使用class...
阅读量:4926 次
发布时间:2019-06-11

本文共 713 字,大约阅读时间需要 2 分钟。

//1。 合理设计这两个类。 2。 student 继承person  3 不能使用classfunction Person(id, name) {    if(!(this instanceof Person)){        return new Person(id,name);    }    this.id = id;    this.name = name;}Person.prototype.say = function (text) {    console.log("say:" + text)};function Student(id, name) {    if(!(this instanceof Student)){        return new Student(id,name);    }    Person.call(this, id, name)}Student.prototype = new Person();Student.prototype.learn = function () {    console.log('learn')};var s = new Student(111, 'tom');var s2 = Student(111, 'tom');   // 支持不使用new关键字创建对象。s.say("hello");console.log(s instanceof Person);console.log(s instanceof Student);

  

 

转载于:https://www.cnblogs.com/lhp2012/p/11047076.html

你可能感兴趣的文章
普通行列转换(version 2.0)(转载)
查看>>
Team Foundation Server 2010 – Basic Installation(转载)
查看>>
T-SQL查询的逻辑处理过程
查看>>
nginx.conf配置文件详解
查看>>
python lambda匿名函数
查看>>
SQL Server数据库入门学习总结
查看>>
ssh mysql命令大全
查看>>
查看慢sql语句
查看>>
iOS UILabel自定义行间距时获取高度
查看>>
Freesiwtch NAT支持
查看>>
密码强度的正则表达式(JavaScript)总结
查看>>
13 hbase连接
查看>>
汇编-实验一
查看>>
七、Jmeter + ant + jenkins轻量级接口自动化测试
查看>>
[转载]Virtual Machine Manager on Synology DS716+II
查看>>
简单易用的堡垒机系统—Teleport
查看>>
Python 递归
查看>>
MySQL常用函数
查看>>
[转帖]日本制裁韩国 全球闪存、内存芯片或许要重新涨价了
查看>>
关于SQL2005EXPRESS默认远程无法连接的解决
查看>>