1.尝试一:子类对象调用被覆盖了的父类函数 根据元表设置流程,我们只有将父类元表找到就能调用父类的方法了 ①在子类Circle中增加一个调用父类方法的函数 --调用父类被子类覆盖了的name方法 function Circle:sharp_name() local circle_metatable = getmetatable(self) local sharp_metatable = getmetatable(circle_metatable) sharp_metatable["name&qu…