-
Notifications
You must be signed in to change notification settings - Fork 0
/
class.js
84 lines (74 loc) · 1.58 KB
/
class.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
//基本定义和生成实例
class Parent {
constructor(name = 'mukewang') {
this.name = name;
}
}
let v_parent = new Parent('liangjie');
}
{
class Parent {
constructor(name = 'mukewang') {
this.name = name;
}
}
class Child extends Parent {
}
}
{
class Parent {
constructor(name = 'mukewang') {
this.name = name;
}
}
class Child extends Parent {
constructor(name='child'){
super();
}
}
var _child=new Child();
console.log(_child);
}
{
class Parent{
constructor(name="parent"){
this.name=name;
}
get longName(){
return 'mk-'+this.name
}
set longName(value){
this.name=value;
}
}
let v=new Parent();
console.log('getter',v.longName);
v.longName="hello";
console.log('setter',v.longName);
}
{
//静态方法
class Parent{
constructor(name="liangjie"){
this.name=name;
}
//通过类调用,而不是类的实例
static tell(){
console.log('tell');
}
}
Parent.tell();
}
{
class Parent{
constructor(name="liangjie"){
this.name=name;
}
static tell(){
console.log('tell');
}
}
Parent.type="test";
console.log('静态属性',Parent.type);
}