比如说有3个类,class one ,class two ,class three.
class two 和 class three要使用到class one中的方法
是不是只能使用接口interface one{}class two implements one{}class three implements two{}而不能使用继承class one{}class two extends one{}class three extends one{}