//创建Star类class Star {//构造器constructor(uname){this.name = uname;}init(){log(“我是方法”)}}var ldh = new Star() //实例化ldh.init()//通过实例化对象调用