AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
>[success] # 类作为类型 ~~~ 1.类也可以声明一个类型和接口类型一样的效果 ~~~ ~~~ class A { name: string; constructor(name: string) { this.name = name; } } const a1: A = {}; // ts(2741) Property 'name' is missing in type '{}' but required in type 'A'. const a2: A = { name: 'a2' }; // ok ~~~