[TS] interface, type, class 中的分号,逗号

发布时间:2024-10-25 11:01

// ↓ 接口 interface
interface Interface1 {
    name:string; // ← 分号
    age:number, // ← 逗号
    sex?:string // ← 不写分号,也不写逗号
    interests?:string[];
}
// ↓ 类型 type
type Type1 = {
    name:string;
    age:number,
    sex?:string
    interests?:string[];
}
const in1:Interface1 = {name:'张三', age:18}
console.log(in1.name);

const t1:Type1 = {name:'李四', age:13}
console.log(t1.age);

上面关于 interface, type的写法都没有语法错误(不会报错)

结论:
interface 和 type 中可以用分号或逗号,
注意:class 中只能用分号。

ItVuer - 免责声明 - 关于我们 - 联系我们

本网站信息来源于互联网,如有侵权请联系:561261067@qq.com

桂ICP备16001015号