在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
Typescript中方法重载的实现 function getInfo(name:string):string; function getInfo(age:number):string; function getInfo(str:any):any{ if (typeof str=='string') { return '我叫---'+str } if (typeof str=='number') { return '我的年龄---'+str } } console.log(getInfo('张三')) console.log(getInfo(18)) 运行结果: |
请发表评论