Linker error from not declaring abstractmethod in abstract base class?
链接错误不能声明抽象方法的抽象基类?
2
The difference is that if you could use abstract methods in this case you'd see a "Class must implement method" error when you try to run your code (any code), and your IDE would highlight the error.
And if that method is never called, you won't get the error, which to means it's not really "obliging" the declaration in the same way an abstract def would.