当前位置:网站首页>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')
}
}
边栏推荐
- CADD course learning (7) -- Simulation of target and small molecule interaction (semi flexible docking autodock)
- AITM 2-0003 水平燃烧试验
- Duchefa丨D5124 MD5A 培养基中英文说明书
- 最长摆动序列[贪心练习]
- ProSci LAG3抗体的化学性质和应用说明
- Abnova cyclosporin a monoclonal antibody and its research tools
- LeetCode: Distinct Subsequences [115]
- 启牛2980有没有用?开户安全吗、
- Phpstudy Xiaopi's MySQL Click to start and quickly flash back. It has been solved
- CLion配置visual studio(msvc)和JOM多核编译
猜你喜欢

解析五育融合之下的steam教育模式

Duchefa cytokinin dihydrozeatin (DHZ) instructions

LeetCode_哈希表_困难_149. 直线上最多的点数

Graph embedding learning notes

Influence of oscilloscope probe on signal source impedance

显示器要申请BS 476-7 怎么送样?跟显示屏一样吗??

ProSci LAG-3 重组蛋白说明书

Abbkine trakine F-actin Staining Kit (green fluorescence) scheme

Maker education infiltrating the transformation of maker spirit and culture

2. < tag hash table, string> supplement: Sword finger offer 50 The first character DBC that appears only once
随机推荐
Duchefa d5124 md5a medium Chinese and English instructions
Web Service简单入门示例
Learning notes of SAS programming and data mining business case 19
基于flask写一个接口
学习机器人无从下手?带你体会当下机器人热门研究方向有哪些
五层网络协议
培养机器人教育创造力的前沿科技
2. < tag hash table, string> supplement: Sword finger offer 50 The first character DBC that appears only once
Interpreting the daily application functions of cooperative robots
王老吉药业“关爱烈日下最可爱的人”公益活动在南京启动
Duchefa丨MS培养基含维生素说明书
Abnova DNA marker high quality control test program
Material design component - use bottomsheet to show extended content (II)
Maker education infiltrating the transformation of maker spirit and culture
Which is the best online collaboration product? Microsoft loop, notion, flowus
Write an interface based on flask
教你自己训练的pytorch模型转caffe(三)
How to make ERP inventory accounts of chemical enterprises more accurate
Abnova e (diii) (WNV) recombinant protein Chinese and English instructions
leetcode:1755. 最接近目标值的子序列和