码迷,mamicode.com
首页 > 其他好文 > 详细

5.接口

时间:2020-05-04 13:18:18      阅读:58      评论:0      收藏:0      [点我收藏+]

标签:color   function   包含   fun   inf   hello   mic   inter   bsp   

 

 

1.基本

//接受一个对象,该对象里必须包含 number类型的age属性
function fun(stu:{age:number}){
    console.info(‘hello‘)
}

 

技术图片

 

 

 

2.使用interface

interface Student{
    age:number
}

function fun(stu:Student){
    console.info(stu.age)
}

let student={age:10,name:"tom"}
fun(student)

 

3.可选参数

 

5.接口

标签:color   function   包含   fun   inf   hello   mic   inter   bsp   

原文地址:https://www.cnblogs.com/buchizaodian/p/12826056.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!