super(BasicBlock, self).__init__()
时间: 2023-11-27 11:04:06 浏览: 64
python中super().__init__()
The super() function is a built-in Python function that returns a temporary object of the superclass, which allows you to call its methods. In this case, the super() function is being used to call the constructor of the BasicBlock class's superclass. The __init__() method is then called on this temporary object to initialize the superclass.
阅读全文