当前位置:网站首页>TS quick start - functions
TS quick start - functions
2022-07-05 00:14:00 【Warmth key】
stay TS in , Although classes are already supported , Namespace and module , But functions are still the main place to define behavior
TS Most of the functions in are related to JS identical , The difference is ts Type declaration will be added to the return value and parameters of the function
stay TS in , Functions are still the most basic 、 One of the most important concepts
Function type definition
The definition of function type includes Parameters and Return value Type definition of
1. Directly define function types
function sayMyself(name: string, age: number): string {
return ` I am a ${
name}, I this year ${
age} year `;
}
const sayMyself = (name: string, age: number) => {
return ` I am a ${
name}, I this year ${
age} year `;
}
console.log(sayMyself(' Warmth key', 23)); // I am warm key, I this year 23 year
function printMsg(warn: string): void {
console.warn(' Warning message ', warn);
}
const printMsg = (warn: string): void => {
console.warn(' Warning message ', warn);
}
printMsg(' Warning warning 123'); // Warning message Warning warning 123
If the type of the parameter is omitted here ,TypeScript
The default parameter is any
type ;
If you omit the type of the return value
If the function has no return value , that TypeScript
The default function return value is void
type ;
If the function has a return value , that TypeScript
The return type will be inferred according to the defined logic .
2. type Define function types
/* First use of type Declare a function */
type Submit = (user: string, props: object) => string;
/* Then implement the function according to the declaration of the function */
const submitHandle: Submit = (user, props) => {
return ` Submit successfully , ${
user}`
// return 123 // Returning a number will report an error , The error message is as follows
// You can't type “(user: string, props: object) => number” Assign to type “Submit”. You can't type “number” Assign to type “string”.
}
submitHandle(' Warmth key', {
age: 22 });
// submitHandle(123, { age: 22 }); // error type “number” Argument to cannot be assigned to type “string” Parameters of .
3. interface Define function types
Function types can be clearly defined using interfaces
interface AddInt {
(x: number, y: number): number;
}
const add: AddInt = (a, b) => {
return a + b
}
// You can't type “(a: number, b: number) => string” Assign to type “AddInt”.
// You can't type “string” Assign to type “number”.
// const add: AddInt = (a: number, b: number) => {
// return 'wwww'
// }
Function parameter definition
1. Optional parameters
The definition of optional parameters only needs to add a ?
const add = (x: number, y: number, z?: number): number => {
return x + y + ( z ? z : 0 )
}
console.log(add(1 , 2)); // 3
console.log(add(1 , 2, 3)); // 6
The optional parameters can be one or more
const add = (x: number, y?: number, z?: number): number => {
return x + ( y ? y : 0 ) + ( z ? z : 0 )
}
console.log(add(1 , 2)); // 3
Once optional parameters appear, they can only be followed by optional parameters
const add = (x: number, y?: number, z: number): number => {
// error Required parameters cannot be after optional parameters
return x + ( y ? y : 0 ) + ( z ? z : 0 )
}
2. Default parameters
The default parameter only needs to be assigned an initial value
const add = (x, y = 20) => {
console.log(x + y);
}
add(10); // 30
add(10, 70); // 80
When a default parameter is specified for a parameter ,TS Will recognize the default value and infer the type of this parameter . When the function is called , If the actual parameter type is inconsistent with the default parameter type, an error will be reported
const add = (x, y = 20) => {
console.log(x + y);
}
add(10); // 30
add(10, '70'); // error type “string” Argument to cannot be assigned to type “number” Parameters of .
Of course, you can also explicitly set the type of default parameters
const add = (x: number, y: number = 20): void => {
console.log(x + y);
}
add(10); // 30
add(10, 60); // 70
3. The remaining parameters
The remaining parameters will be treated as an unlimited number of optional parameters . You can have none of them , There can also be any . The compiler will create an array of parameters , The name is in Ellipsis ...
The name given later , You can use this array in the function body .
const add = (...args: number[] ) => {
const res = args.reduce((pre, cur) => {
return pre + cur
})
console.log(res);
}
add(1, 2, 3); // 6
add(10, 20, 30, 50, 90); // 200
function overloading
The function names are the same , And multiple functions with different formal parameters
So called function overload is the same function , Depending on the parameters passed , There will be different forms of expression .
stay JS in , Due to the characteristics of weak types and shape participation arguments can not match , There is no such thing as function overloading But in TS in , This syntax exists with other object-oriented languages
// demand : Define a add function , It can receive 2 individual string Type , You can also receive 2 individual number Add parameters of type
// Overloaded function declaration
function add (x: string, y: string): string;
function add (x: number, y: number): number;
// Define function implementation
function add(x: string | number, y: string | number): string | number | undefined {
if(typeof x === 'string' && typeof y === 'string') return x + y;
else if(typeof x === 'number' && typeof y === 'number') return x + y;
}
console.log(add(1, 2)); // 3
console.log(add(' Warmth ', 'key')); // Warmth key
console.log(add(1, 'key')); // The error information is as follows
// The first 1 Heavy haul ( common 2 individual ),“(x: string, y: string): string”, The following error occurred .
// type “number” Argument to cannot be assigned to type “string” Parameters of .
// The first 2 Heavy haul ( common 2 individual ),“(x: number, y: number): number”, The following error occurred .
// type “string” Argument to cannot be assigned to type “number” Parameters of .
Be careful : Function overloading can only use function
To define , Out of commission interface
type
To define .
边栏推荐
- Verilog tutorial (11) initial block in Verilog
- [kotlin] the third day
- Hisilicon 3559 universal platform construction: YUV422 pit stepping record
- The input of uniapp is invalid except for numbers
- 跨域请求
- 22-07-02周总结
- P3304 [sdoi2013] diameter (diameter of tree)
- Design of emergency lighting evacuation indication system for urban rail transit station
- 电力运维云平台:开启电力系统“无人值班、少人值守”新模式
- How many triangles are there in the golden K-line diagram?
猜你喜欢
Application of fire fighting system based on 3D GIS platform
Summer challenge brings you to play harmoniyos multi terminal piano performance
快解析内网穿透帮助企业快速实现协同办公
Some basic functions of enterprise projects are developed, and important things are saved to online first a
公司要上监控,Zabbix 和 Prometheus 怎么选?这么选准没错!
Jar batch management gadget
「运维有小邓」域密码策略强化器
Power operation and maintenance cloud platform: open the new mode of "unattended and few people on duty" of power system
微服务(Microservice)那点事儿
电力运维云平台:开启电力系统“无人值班、少人值守”新模式
随机推荐
【报错】 “TypeError: Cannot read properties of undefined (reading ‘split‘)“
P3304 [SDOI2013]直径(树的直径)
[paper reading] Tun det: a novel network for meridian ultra sound nodule detection
URLs and URIs
【雅思阅读】王希伟阅读P4(matching1)
用快解析内网穿透实现零成本自建网站
Pytoch --- use pytoch to realize linknet for semantic segmentation
人脸识别5- insight-face-paddle-代码实战笔记
挖财学院开户安全的吗?开户怎么开?
P4408 [NOI2003] 逃学的小孩(树的直径)
Remember to build wheels repeatedly at one time (the setting instructions of obsidian plug-in are translated into Chinese)
IT转测试岗,从迷茫到坚定我究竟付出了什么?
跨域请求
Basic points of the game setup of the points mall
[IELTS reading] Wang Xiwei reading P4 (matching1)
Detailed explanation of openharmony resource management
如何有效对直流列头柜进行监测
端口映射和端口转发区别是什么
Acrel-EMS综合能效平台在校园建设的意义
Face recognition 5- insight face padding code practice notes