什么是super.onCreate(……)?

是java android编程的。其中super是什么东西呀?
2024-11-01 03:33:32
有3个网友回答
网友(1):

super就是调用父类的属性或者方法,反之this就是调用本类中的属性和方法

网友(2):

Keep in mind that whenever you override a method, you first want to make a call to
the original method provided by the parent. That’s why we have a super.onCreate()
call here

网友(3):

extends哪个类,super就是指那个类了。