当前位置:网站首页>Introduction to TS, constructor and its this, inheritance, abstract class and interface
Introduction to TS, constructor and its this, inheritance, abstract class and interface
2022-07-05 20:57:00 【qq_ forty-six million three hundred and two thousand two hundre】
Class
class Person{
// No, static Keywords are the attributes and methods of the instance , It can only be accessed and modified through instances 、 call
name: string = 'tm' // Equate to name='tm'
age: number = 18 // Equate to age=18
// Yes readonly Keyword is a read-only property , Do not modify
// readonly age: number = 18
sayHellow() {
console.log('hellow');
}
// Yes static Keyword is a class attribute ( Static attribute ) And class methods ( Static methods ), It can only be accessed and modified through the class name 、 call
static sex: string = ' Woman ' // Equate to static sex=' Woman '
// readonly When decorating class properties , Must be on static Back
// static readonly sex: string = ' Woman '
static sayHellow() {
console.log('static--hellow');
}
}
console.log(Person.sex);// Woman
Person.sayHellow() //static--hellow
const person1 = new Person()
console.log(person1.name, person1.age); //tm 18
person1.sayHellow()//hellow
Constructor and its this
class Dog{
name: string
age: number
// this Always point to the current instance object
constructor(name: string, age: number) {
this.name = name
this.age = age
}
// this Always point to the current call instance object
bark() {
console.log(this.name);
}
}
// Once the use new Create objects , Will call Dog Of constructor Method
const dog1 = new Dog(' Little black ', 3)
const dog2 = new Dog(' The small white ', 6)
dog1.bark() // Little black
dog2.bark() // The small white
Inheritance and abstract classes
//abstract Keyword decorated class is abstract class , Abstract classes are classes that are designed to be inherited , Can't be used to create objects
abstract class Animal{
name: string
age: number
constructor(name: string, age: number) {
this.name = name
this.age = age
}
//abstract The method of keyword modification is abstract method , Abstract methods have no method bodies , Abstract methods can only be defined in abstract classes , Subclasses must override abstract methods
abstract sayHellow():void
}
// If used extends keyword , be Animal Parent class ,Dog Subclass ; It is equivalent to copying the properties and methods of the parent class into the child class
class Dog extends Animal{
// Subclasses can also add methods and properties by themselves
sex: string
constructor(name: string, age: number, sex: string) {
super(name, age)// Call the constructor of the parent class
this.sex = sex
}
sayHellow() {
console.log(' The dog is barking ');
}
run() {
console.log(' The dog is running ');
}
}
class Car extends Animal{
// Override of parent method
sayHellow() {
console.log(' The cat is barking ');
}
}
const dog = new Dog(' Dogs ', 5, ' Woman ')
console.log(dog.sex); // Woman
dog.sayHellow()// The dog is barking
dog.run()// The dog is running
const car = new Car(' Cat and cat ', 2)
car.sayHellow()// The cat is barking
Interface
// All attributes in an interface cannot have actual values , All methods are abstract methods
// Interface is mainly to define a certain standard , Restricted classes must meet this standard
// Interface is ts Peculiar ,js There is no concept of interface in
interface myInter{
name: string
sayHellow():void // The function does not return a value
}
class MyClass implements myInter{
name: string
constructor(name: string) {
this.name = name
}
sayHellow() {
console.log('aaa')
}
}
边栏推荐
- AITM 2-0003 水平燃烧试验
- 珍爱网微服务底层框架演进从开源组件封装到自研
- Abnova丨E (DIII) (WNV) 重组蛋白 中英文说明书
- Abbkine trakine F-actin Staining Kit (green fluorescence) scheme
- The reason why the ncnn converted model on raspberry pie 4B always crashes when called
- 《SAS编程和数据挖掘商业案例》学习笔记# 19
- 如何让化工企业的ERP库存账目更准确
- php中explode函数存在的陷阱
- Simple getting started example of Web Service
- ProSci LAG3抗体的化学性质和应用说明
猜你喜欢
教你自己训练的pytorch模型转caffe(一)
Analyze the knowledge transfer and sharing spirit of maker Education
Duchefa丨MS培养基含维生素说明书
王老吉药业“关爱烈日下最可爱的人”公益活动在南京启动
Écrire une interface basée sur flask
实现浏览页面时校验用户是否已经完成登录的功能
Use of thread pool
Enclosed please find. Net Maui's latest learning resources
Cutting edge technology for cultivating robot education creativity
线程池的使用
随机推荐
Mathematical analysis_ Notes_ Chapter 9: curve integral and surface integral
The Chinese Academy of Management Sciences gathered industry experts, and Fu Qiang won the title of "top ten youth" of think tank experts
Implementation of redis unique ID generator
Interpreting the daily application functions of cooperative robots
The reason why the ncnn converted model on raspberry pie 4B always crashes when called
MySQL ifnull usage function
sql系列(基础)-第二章 限制和排序数据
CLion配置visual studio(msvc)和JOM多核编译
Binary search
线程池的使用
Norgen AAV extractant box instructions (including features)
学习机器人无从下手?带你体会当下机器人热门研究方向有哪些
ProSci LAG-3 重组蛋白说明书
AITM2-0002 12s或60s垂直燃烧试验
培养机器人教育创造力的前沿科技
Simple getting started example of Web Service
示波器探头对测量带宽的影响
教你自己训练的pytorch模型转caffe(一)
Abnova cyclosporin a monoclonal antibody and its research tools
LeetCode: Distinct Subsequences [115]