什么是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就是指那个类了。