-
Notifications
You must be signed in to change notification settings - Fork 0
/
class.ts
66 lines (55 loc) · 1.19 KB
/
class.ts
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
/** typescript 一个强大的地方就是对面向对象的支持,使开发大型应用更加丝滑 */
abstract class UserInfo {
abstract getName():string;
getSex(){
return '1'
}
}
class HumanAction {
run(){
}
call(){}
}
class User<T> extends HumanAction implements UserInfo {
/** implements抽象类的方法必须实现 */
public getName(): string {
return 'user'
}
public getSex(): string {
return '1'
}
readonly age = 16
/** 私有成员 */
private id?: number;
/** name */
public name!: string;
/** 静态成员 */
static role = 'mate';
/** 获取用户id */
get useId(){
return this.id
}
/** 构造起 */
constructor(){
super();
}
/** set方法 */
set useId(args:number){
this.id = args
}
/** 函数重载 */
add(a: string, b: number): string;
add(a: number, b: string): string;
add(a: any, b: any) {
if (typeof a === "string" || typeof b === "string") {
return a.toString() + b.toString();
}
return a + b;
}
protected request = ()=>{
return '111';
}
}
const data: User<string> = new User()
User.role
console.log(data)