double area = ((IShape)circle).Area();怎么理解
把 circle 这个对象 强转成 IShape 这个类,然后就可以把circle当成 IShape 这个类,去调用IShape 这个类的 Area方法计算面积。