面试题答案一键面试class MathUtils { static pi = 3.14159; static circleArea(r) { return MathUtils.pi * r * r; } }