// 在ES5中,通常使用构造函数方法去实现类与继承 // 创建父类 function Father(name, age){ this.name = name; this.age = age; } Father.prototype.show = function(){ console.log(this.name); console.log(this.age); } const obj = new Father('李大师', 30); obj.show(); // 输出 李大师 30 // 创建子…
class的写法及继承 JavaScript 语言中,生成实例对象的传统方法是通过构造函数.下面是一个例子     function Point(x, y) {  this.x = x;  this.y = y;} Point.prototype.toString = function () {  return '(' + this.x + ', ' + this.y + ')';}; var p = new Point(1, 2);     上面这种写法跟传统的面向对象语言(比如 C++ 和…
类的继承 extends  connstructor  super 例1: class Father { constructor(){} money(){ console.log("10000块"); } } // 子类Son使用 extends 继承父类Father class Son extends Father {} var ss = new Father(); ss.money(); // 10000块 例2: class Fa { constructor(x, y){ thi…
1.app.js /** * es6中的类.静态方法.继承 */ // 定义Person类 class Person { constructor(name, age) { /*类的构造函数,实例化的时候执行,new的时候执行*/ this._name = name; this._age = age; } // 定义方法 注意:在es6里面方法之间没有逗号(,) getName() { console.log(this._name) } setName(name) { this._name = n…
面包屑导航(Breadcrumbs)是一种基于网站层次信息的显示方式.以博客为例,面包屑导航可以显示发布日期.类别或标签.它们表示当前页面在导航层次结构内的位置. Bootstrap 中的面包屑导航(Breadcrumbs)是一个简单的带有 .breadcrumb class 的无序列表.分隔符会通过 CSS(bootstrap.min.css)中下面所示的 class 自动被添加: .breadcrumb > li + li:before { color: #CCCCCC; content:…
1.ES5中的继承模式 我们先看ES5中的继承. 既然要实现继承,首先我们得要有一个父类. Animal.prototype.eat = function(food) { console.log(this.name + '正在吃' + food); } function Animal(name) { this.color = ['green','red','blue']; this.name = name || 'animal'; this.sleep = function() { consol…
ES6中的类 4.1.class基本语法 在之前的javascript语法中是不存在class这样的概念,如果要通过构造函数生成一个新对象代码 function Shape(width,height){ this.width = width; this.height = height; } Point.prototype.toString = function () { return '(' + this.width + ', ' + this.height + ')'; } ES6提供了更接近…
前面的话 大多数面向对象的编程语言都支持类和类继承的特性,而JS却不支持这些特性,只能通过其他方法定义并关联多个相似的对象,这种状态一直延续到了ES5.由于类似的库层出不穷,最终还是在ECMAScript 6中引入了类的特性.本文将详细介绍ES6中的类 ES5近似结构 在ES5中没有类的概念,最相近的思路是创建一个自定义类型:首先创建一个构造函数,然后定义另一个方法并赋值给构造函数的原型 function PersonType(name) { this.name = name; } Person…
漫谈程序员(十八)windows中的命令subst 用法格式 一.subst [盘符] [路径]  将指定的路径替代盘符,该路径将作为驱动器使用 二.subst /d 解除替代 三.不加任何参数键入 SUBST,可以显示当前虚拟驱动器的清单. 举例 subst e: c:/fake_E 美文美图…
如何在ES6中管理类的私有数据?本文为你介绍四种方法: 在类的构造函数作用域中处理私有数据成员 遵照命名约定(例如前置下划线)标记私有属性 将私有数据保存在WeakMap中 使用Symbol作为私有属性的键 对构造函数来说,前两种方法在 ES5 中已经很常见了,后两种方法是 ES6 中新出现的.现在我们在同一个案例上分别用这四种方法来实践一下: 1. 在类的构造函数作用域中处理私有数据成员 我们要演示的这段代码是一个名为 Countdown 的类在 counter(初始值为 counter)变成…