企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
``` namespace Person{ export class Man{ name: string constructor(name: string){ this.name = name; } banZhuan(){ console.log("ban zhuan"); } } export class Woman{ name: string constructor(name: string){ this.name = name; } cook(){ console.log("cook"); } } } var man = new Person.Man("sn"); man.banZhuan(); var woman = new Person.Woman("test"); woman.cook(); ```