class Cat(Animal):
def __init__(self):
import warnings
warnings.warn("Cat类带删除线了", DeprecationWarning) def run(self):
import warnings
warnings.warn("run方法带删除线了", DeprecationWarning)
class Cat(Animal):
def __init__(self):
import warnings
warnings.warn("Cat类带删除线了", DeprecationWarning) def run(self):
import warnings
warnings.warn("run方法带删除线了", DeprecationWarning)