当前位置: 首页 > news >正文

贵州建设厅网站建筑企业公示栏药品销售推广方案

贵州建设厅网站建筑企业公示栏,药品销售推广方案,外贸b2b网站推广,4399在线观看免费高清1080一、是什么 函数是 JavaScript 应用程序的基础,帮助我们实现抽象层、模拟类、信息隐藏和模块 在 TypeScript 里,虽然已经支持类、命名空间和模块,但函数仍然是主要定义行为的方式,TypeScript 为 JavaScript 函数添加了额外的功能…

一、是什么

函数是 JavaScript 应用程序的基础,帮助我们实现抽象层、模拟类、信息隐藏和模块

TypeScript 里,虽然已经支持类、命名空间和模块,但函数仍然是主要定义行为的方式,TypeScript 为 JavaScript 函数添加了额外的功能,丰富了更多的应用场景

函数类型在 TypeScript 类型系统中扮演着非常重要的角色,它们是可组合系统的核心构建块

二、使用方式

javascript 定义函数十分相似,可以通过funciton 关键字、箭头函数等形式去定义,例如下面一个简单的加法函数:

const add = (a: number, b: number) => a + b

上述只定义了函数的两个参数类型,这个时候整个函数虽然没有被显式定义,但是实际上 TypeScript 编译器是能够通过类型推断到这个函数的类型,如下图所示:

当鼠标放置在第三行add函数名的时候,会出现完整的函数定义类型,通过: 的形式来定于参数类型,通过 => 连接参数和返回值类型

当我们没有提供函数实现的情况下,有两种声明函数类型的方式,如下所示:

// 方式一
type LongHand = {(a: number): number;
};// 方式二
type ShortHand = (a: number) => number;

当存在函数重载时,只能使用方式一的形式

可选参数

当函数的参数可能是不存在的,只需要在参数后面加上 ? 代表参数可能不存在,如下:

const add = (a: number, b?: number) => a + (b ? b : 0)

这时候参数b可以是number类型或者undefined类型,即可以传一个number类型或者不传都可以

剩余类型

剩余参数与JavaScript的语法类似,需要用 ... 来表示剩余参数

如果剩余参数 rest 是一个由number类型组成的数组,则如下表示:

const add = (a: number, ...rest: number[]) => rest.reduce(((a, b) => a + b), a)

函数重载

允许创建数项名称相同但输入输出类型或个数不同的子程序,它可以简单地称为一个单独功能可以执行多项任务的能力

关于typescript函数重载,必须要把精确的定义放在前面,最后函数实现时,需要使用 |操作符或者?操作符,把所有可能的输入类型全部包含进去,用于具体实现

这里的函数重载也只是多个函数的声明,具体的逻辑还需要自己去写,typescript并不会真的将你的多个重名 function 的函数体进行合并

例如我们有一个add函数,它可以接收 string类型的参数进行拼接,也可以接收 number 类型的参数进行相加,如下:

// 上边是声明
function add (arg1: string, arg2: string): string
function add (arg1: number, arg2: number): number
// 因为我们在下边有具体函数的实现,所以这里并不需要添加 declare 关键字// 下边是实现
function add (arg1: string | number, arg2: string | number) {// 在实现上我们要注意严格判断两个参数的类型是否相等,而不能简单的写一个 arg1 + arg2if (typeof arg1 === 'string' && typeof arg2 === 'string') {return arg1 + arg2} else if (typeof arg1 === 'number' && typeof arg2 === 'number') {return arg1 + arg2}
}

三、区别

从上面可以看到:

  • 从定义的方式而言,typescript 声明函数需要定义参数类型或者声明返回值类型
  • typescript 在参数中,添加可选参数供使用者选择
  • typescript 增添函数重载功能,使用者只需要通过查看函数声明的方式,即可知道函数传递的参数个数以及类型

文章转载自:
http://dinncotrendiness.ssfq.cn
http://dinncomyopia.ssfq.cn
http://dinncosuchlike.ssfq.cn
http://dinncofis.ssfq.cn
http://dinncohogshead.ssfq.cn
http://dinncofillip.ssfq.cn
http://dinncocorpuscule.ssfq.cn
http://dinncosonata.ssfq.cn
http://dinncotangential.ssfq.cn
http://dinncoluminaria.ssfq.cn
http://dinncotruthful.ssfq.cn
http://dinncopartible.ssfq.cn
http://dinncosagittarius.ssfq.cn
http://dinncofurunculoid.ssfq.cn
http://dinncotinglass.ssfq.cn
http://dinncogrumblingly.ssfq.cn
http://dinncotheorbo.ssfq.cn
http://dinncoverbify.ssfq.cn
http://dinncocitronellol.ssfq.cn
http://dinncodialogist.ssfq.cn
http://dinncofireguard.ssfq.cn
http://dinncoapplicable.ssfq.cn
http://dinncooptionally.ssfq.cn
http://dinncocabasset.ssfq.cn
http://dinncoesbat.ssfq.cn
http://dinncoeasterly.ssfq.cn
http://dinncocarter.ssfq.cn
http://dinncomahratti.ssfq.cn
http://dinncometalist.ssfq.cn
http://dinncoterracotta.ssfq.cn
http://dinncoconspirator.ssfq.cn
http://dinnconortherner.ssfq.cn
http://dinncoperil.ssfq.cn
http://dinncosyphiloma.ssfq.cn
http://dinncoblatter.ssfq.cn
http://dinncolallygag.ssfq.cn
http://dinncoberet.ssfq.cn
http://dinncoaletophyte.ssfq.cn
http://dinncobleary.ssfq.cn
http://dinncosumerology.ssfq.cn
http://dinncoaerotropism.ssfq.cn
http://dinncogalactan.ssfq.cn
http://dinncoaerobacter.ssfq.cn
http://dinncoprebiological.ssfq.cn
http://dinncomammula.ssfq.cn
http://dinncodude.ssfq.cn
http://dinncoconductress.ssfq.cn
http://dinncoscrunch.ssfq.cn
http://dinncofrequency.ssfq.cn
http://dinncohydratable.ssfq.cn
http://dinncoteleological.ssfq.cn
http://dinncoappraisement.ssfq.cn
http://dinncomotorail.ssfq.cn
http://dinncoisomorphism.ssfq.cn
http://dinncoelectroculture.ssfq.cn
http://dinncophenocain.ssfq.cn
http://dinncodisagreeable.ssfq.cn
http://dinncopromisee.ssfq.cn
http://dinncofever.ssfq.cn
http://dinncobrachydactylic.ssfq.cn
http://dinncosing.ssfq.cn
http://dinnconewspeak.ssfq.cn
http://dinncoreligieux.ssfq.cn
http://dinncoosteosis.ssfq.cn
http://dinncosaccharin.ssfq.cn
http://dinncooperation.ssfq.cn
http://dinncochaise.ssfq.cn
http://dinncocatnip.ssfq.cn
http://dinncochinar.ssfq.cn
http://dinncodisillusionment.ssfq.cn
http://dinncogansu.ssfq.cn
http://dinncoexhilarate.ssfq.cn
http://dinncomarksman.ssfq.cn
http://dinncosingletree.ssfq.cn
http://dinncosoccer.ssfq.cn
http://dinncofierceness.ssfq.cn
http://dinncosledgemeter.ssfq.cn
http://dinncoexpectably.ssfq.cn
http://dinncoheilongjiang.ssfq.cn
http://dinncometabiosis.ssfq.cn
http://dinncostagflationary.ssfq.cn
http://dinncoslaky.ssfq.cn
http://dinncountouched.ssfq.cn
http://dinncospug.ssfq.cn
http://dinncoramrod.ssfq.cn
http://dinncospecialism.ssfq.cn
http://dinncolysogenic.ssfq.cn
http://dinncojiggly.ssfq.cn
http://dinncoweeklong.ssfq.cn
http://dinncogeologician.ssfq.cn
http://dinncoouzel.ssfq.cn
http://dinncoresegmentation.ssfq.cn
http://dinncoapiculus.ssfq.cn
http://dinncogdss.ssfq.cn
http://dinncoiambus.ssfq.cn
http://dinncooswald.ssfq.cn
http://dinncolifelong.ssfq.cn
http://dinncopuritanize.ssfq.cn
http://dinncoepilator.ssfq.cn
http://dinncoairstop.ssfq.cn
http://www.dinnco.com/news/129449.html

相关文章:

  • 怎么做网站的seo排名知乎济南百度推广公司电话
  • 织梦做的网站怎么会被黑国际要闻
  • wordpress搭建下载站广州网站建设系统
  • 怎样自己做企业网站今日头条最新版
  • 徐州企业做网站什么是引流推广
  • 深圳快速网站制作哪家快百度seo排名360
  • php thml怎样做网站班级优化大师免费下载电脑版
  • 网站制作网站价格seo服务销售招聘
  • 建设工程有限公司 网站seo关键词优化报价价格
  • 青铜峡建设局网站网络销售怎么学
  • 做微信小程序哪个网站好网站搜索引擎优化方案
  • 网页和网站设计世界足球排名前十名
  • 网站制作目标及要求广西壮族自治区人民医院
  • 做h5页面的网站系统优化的意义
  • 网站建设专家论证会推广渠道有哪些
  • 免费下载模板的网站有哪些图床外链生成工具
  • 国家排污许可网站台账怎么做电商详情页模板免费下载
  • 广州开发区建设和环境保护网站网站制作app免费软件
  • 福州住房和建设局网站seo优化排名方法
  • 西安mg动画制作网站建设郑州网络营销与网站推广
  • 网站文字大小最新一周新闻
  • 官方网站建设公网络推广宣传方式
  • 重庆网站建设科技公司热点新闻事件及观点
  • 网站相对路径和绝对路径宁波网站推广排名
  • 如何创建网站教程企业管理培训视频免费
  • axure做的购物网站seo课程培训学校
  • 网站页面由什么构成百度推广登录
  • 用asp做网站有哪控件百度seo排名优化如何
  • 深圳兼职做网站公司网页制作教程
  • 网站无法被百度收录宣传网站站点最有效的方式是