一. ?的意思是可选的,调用函数时这个可以不传二.定义类型(2种)1. type wbs = string | number2. 接口定义```interface wbs { x : string xx: boolean}```