是否有一种智能方法可以在PyCharm Community Edition中找到并实现所有抽象方法?
我在那里找到了"实施方法( Ctrl + I )",但它已经找到了一直被禁用。
例如:
class Base():
@abstractmethod
def abstract1(self):
raise NotImplementedError
@abstractmethod
def abstract2(self):
raise NotImplementedError
def method1(self):
print("ok")
如果我写一个子类,是否有一种聪明的方法可以在我的子类中实现abstract1
和abstract2
,而不是method1
?
因为我发现使用 Ctrl + O 需要先读取源代码。