TypeScript-类和接口

简介: TypeScript-类和接口

类实现接口


只要实现的某一个接口, 那么就必须实现接口中所有的属性和方法

错误示例:

interface PersonInterface {
    name: string;
    say(): void;
}
class Person implements PersonInterface {
    name: string = 'BNTang';
}
let p = new Person();
p.say();

正确示例:

interface PersonInterface {
    name: string;
    say(): void;
}
class Person implements PersonInterface {
    name: string = 'BNTang';
    say(): void {
        console.log(`我的名字叫:${this.name}`);
    }
}
let p = new Person();
p.say();




接口继承类


定义一个 Person 类如下:

class Person {
    name: string = 'BNTang';
    age: number = 18;
    say(): void {
        console.log(`name = ${this.name}, age = ${this.age}`);
    }
}
  • 只要一个接口继承了某个类, 那么就会继承这个类中所有的属性和方法
  • 但是只会继承属性和方法的 声明, 不会继承属性和方法的 实现
class Person {
    name: string = 'BNTang';
    age: number = 18;
    say(): void {
        console.log(`name = ${this.name}, age = ${this.age}`);
    }
}
interface PersonInterface extends Person {
    gender: string;
}
class Student implements PersonInterface {
    gender: string = 'male';
    name: string = 'zs';
    age: number = 18;
    say(): void {
        console.log(`name = ${this.name}, age = ${this.age}, gender = ${this.gender}`);
    }
}
let stu = new Student();
stu.say();
  • 如果接口继承的类中包含了 protected 的属性和方法, 那么就只有这个类的 子类 才能实现这个接口

包含 protected 属性的情况

错误示例:

class Person {
    protected name: string = 'BNTang';
    age: number = 18;
    say(): void {
        console.log(`name = ${this.name}, age = ${this.age}`);
    }
}
interface PersonInterface extends Person {
    gender: string;
}
class Student implements PersonInterface {
    gender: string = 'male';
    name: string = 'zs';
    age: number = 18;
    say(): void {
        console.log(`name = ${this.name}, age = ${this.age}, gender = ${this.gender}`);
    }
}
let stu = new Student();
stu.say();

正确示例:

class Person {
    protected name: string = 'BNTang';
    age: number = 18;
    say(): void {
        console.log(`name = ${this.name}, age = ${this.age}`);
    }
}
interface PersonInterface extends Person {
    gender: string;
}
class Student extends Person implements PersonInterface {
    gender: string = 'male';
    name: string = 'zs';
    age: number = 18;
    say(): void {
        console.log(`name = ${this.name}, age = ${this.age}, gender = ${this.gender}`);
    }
}
let stu = new Student();
stu.say();

包含 protected 方法的情况

错误示例:

class Person {
    name: string = 'BNTang';
    age: number = 18;
    protected say(): void {
        console.log(`name = ${this.name}, age = ${this.age}`);
    }
}
interface PersonInterface extends Person {
    gender: string;
}
class Student implements PersonInterface {
    gender: string = 'male';
    name: string = 'zs';
    age: number = 18;
    say(): void {
        console.log(`name = ${this.name}, age = ${this.age}, gender = ${this.gender}`);
    }
}
let stu = new Student();
stu.say();


正确示例:

class Person {
    name: string = 'BNTang';
    age: number = 18;
    protected say(): void {
        console.log(`name = ${this.name}, age = ${this.age}`);
    }
}
interface PersonInterface extends Person {
    gender: string;
}
class Student extends Person implements PersonInterface {
    gender: string = 'male';
    name: string = 'zs';
    age: number = 18;
    say(): void {
        console.log(`name = ${this.name}, age = ${this.age}, gender = ${this.gender}`);
    }
}
let stu = new Student();
stu.say();

最后


本期结束咱们下次再见👋~

🌊 关注我不迷路,如果本篇文章对你有所帮助,或者你有什么疑问,欢迎在评论区留言,我一般看到都会回复的。大家点赞支持一下哟~ 💗

相关文章
|
2月前
|
JavaScript
typeScript基础(5)_对象的类型-interfaces接口
本文介绍了TypeScript中接口(interfaces)的基本概念和用法,包括如何定义接口、接口的简单使用、自定义属性、以及如何使用`readonly`关键字定义只读属性。接口在TypeScript中是定义对象形状的重要方式,可以规定对象的必有属性、可选属性、自定义属性和只读属性。
41 1
|
1月前
|
JavaScript 前端开发 Java
TypeScript【接口】超简洁教程!再也不用看臭又长的TypeScript文档了!
【10月更文挑战第10天】TypeScript【接口】超简洁教程!再也不用看臭又长的TypeScript文档了!
|
1月前
|
JavaScript 前端开发
Vue2整合TypeScript:借助vue-property-decorator以类模式编写组件
Vue2整合TypeScript:借助vue-property-decorator以类模式编写组件
133 3
|
5月前
|
JavaScript 前端开发 程序员
TypeScript 类
TypeScript 类
|
2月前
|
数据采集 JavaScript 前端开发
使用 TypeScript 接口优化数据结构
使用 TypeScript 接口优化数据结构
|
2月前
|
JavaScript
typeScript进阶(13)_类与注意事项(八项特性)
TypeScript的类支持特性包括:构造函数、继承(使用`extends`)、公有/私有/受保护修饰符、只读修饰符、参数属性、存取器(getters/setters)、抽象类(用`abstract`声明)。类可用作类型。
24 0
typeScript进阶(13)_类与注意事项(八项特性)
|
3月前
|
开发框架 前端开发 JavaScript
在基于vue-next-admin的Vue3+TypeScript前端项目中,为了使用方便全局挂载对象接口
在基于vue-next-admin的Vue3+TypeScript前端项目中,为了使用方便全局挂载对象接口
|
4月前
|
JavaScript 开发者 索引
TypeScript接口与类型别名:深入解析与应用实践
【7月更文挑战第10天】TypeScript的接口和类型别名是定义类型的关键工具。接口描述对象结构,用于类、对象和函数参数的形状约束,支持可选、只读属性及继承。类型别名则为复杂类型提供新名称,便于重用和简化。接口适合面向对象场景,类型别名在类型重用和复杂类型简化时更有优势。选择时要考虑场景和灵活性。
|
3月前
|
JavaScript 前端开发 API
Vue 3+TypeScript项目实战:解锁vue-next-admin中的全局挂载对象接口,让跨组件共享变得高效而优雅!
【8月更文挑战第3天】在构建Vue 3与TypeScript及vue-next-admin框架的应用时,为提高多组件间共享数据或方法的效率和可维护性,全局挂载对象接口成为关键。本文通过问答形式介绍其必要性和实现方法:首先定义全局接口及其实现,如日期格式化工具;接着在`main.ts`中通过`app.config.globalProperties`将其挂载;最后在组件内通过Composition API的`getCurrentInstance`访问。这种方式简化了跨组件通信,增强了代码复用性和维护性。
59 0
|
4月前
|
JavaScript 前端开发 程序员
Typescript 【实用教程】(2024最新版)含类型声明,类型断言,函数,接口,泛型等
Typescript 【实用教程】(2024最新版)含类型声明,类型断言,函数,接口,泛型等
80 0
下一篇
无影云桌面