我想知道,当创建新Activity
类然后覆盖该onCreate()
方法时,在eclipse中我总是会自动添加:super.onCreate()
。这是怎么发生的?在抽象类或父类中是否存在强制执行此操作的java关键字?
我不知道不调用父类是否违法,但是我记得在某些方法中,我没有这样做就引发了异常。这也是Java内置的吗?您可以使用某些关键字来做到这一点吗?或如何完成?
我想知道,当创建新Activity
类然后覆盖该onCreate()
方法时,在eclipse中我总是会自动添加:super.onCreate()
。这是怎么发生的?在抽象类或父类中是否存在强制执行此操作的java关键字?
我不知道不调用父类是否违法,但是我记得在某些方法中,我没有这样做就引发了异常。这也是Java内置的吗?您可以使用某些关键字来做到这一点吗?或如何完成?
Answers:
这是Activity#onCreate()
-几乎所有评论的来源(原始-参见〜800行):
/**
* Called when the activity is starting. This is where most initialization
* should go: calling {@link #setContentView(int)} to inflate the
* activity's UI, using {@link #findViewById} to programmatically interact
* with widgets in the UI, calling
* {@link #managedQuery(android.net.Uri , String[], String, String[], String)} to retrieve
* cursors for data being displayed, etc.
*
* <p>You can call {@link #finish} from within this function, in
* which case onDestroy() will be immediately called without any of the rest
* of the activity lifecycle ({@link #onStart}, {@link #onResume},
* {@link #onPause}, etc) executing.
*
* <p><em>Derived classes must call through to the super class's
* implementation of this method. If they do not, an exception will be
* thrown.</em></p>
*
* @param savedInstanceState If the activity is being re-initialized after
* previously being shut down then this Bundle contains the data it most
* recently supplied in {@link #onSaveInstanceState}. <b><i>Note: Otherwise it is null.</i></b>
*
* @see #onStart
* @see #onSaveInstanceState
* @see #onRestoreInstanceState
* @see #onPostCreate
*/
protected void onCreate(Bundle savedInstanceState) {
mVisibleFromClient = !mWindow.getWindowStyle().getBoolean(
com.android.internal.R.styleable.Window_windowNoDisplay, false);
mCalled = true;
}
因此,我的猜测是ADT Eclipse插件会自动super.onCreate()
为您添加该调用。不过,这完全是猜测。
mCalled = true
也用于可能的异常。也许不是,onCreate()
但是当确实抛出这样的异常时,它将使用该简单模式。
这被添加到支持注释库中:
dependencies {
compile 'com.android.support:support-annotations:22.2.0'
}
http://tools.android.com/tech-docs/support-annotations
@CallSuper
如果要强制子类执行父类的逻辑,则通用模式如下所示:
public abstract class SuperClass implements SomeInterface
{
// This is the implementation of the interface method
// Note it's final so it can't be overridden
public final Object onCreate()
{
// Hence any logic right here always gets run
// INSERT LOGIC
return doOnCreate();
// If you wanted you could instead create a reference to the
// object returned from the subclass, and then do some
// post-processing logic here
}
protected abstract Object doOnCreate();
}
public class Concrete extends SuperClass
{
@Override
protected Object doOnCreate()
{
// Here's where the concrete class gets to actually do
// its onCreate() logic, but it can't stop the parent
// class' bit from running first
return "Hi";
}
}
这实际上并不能回答您有关什么促使Eclipse自动将超类调用插入实现的问题。但后来我认为这不是要走的路,因为它总是可以删除的。
您实际上不能强制某个方法必须使用Java关键字或类似关键字调用超类的版本。我怀疑您的异常仅来自父类中的某些代码,这些代码检查了预期的不变式或某些因您的方法而无效的东西。请注意,这与引发异常有细微差别,因为您未能调用super.onCreate()
。
如果要绝对确保也调用了超类方法,则必须进行一些欺骗:不要覆盖超类方法,而要让它调用可重写的受保护方法。
class Super
{
public final void foo() {
foo_stuff();
impl_stuff();
}
protected void impl_stuff() {
some_stuff_that_you_can_override();
}
}
class Base extends Super
{
protected void impl_stuff() {
my_own_idea_of_impl();
}
}
这样,用户必须调用Super.foo()或Base.foo(),并且它将始终是声明为final的基类版本。特定于实现的内容位于impl_stuff()中,可以将其覆盖。
为了回答您的实际问题,对super.onCreate()的调用的自动创建是ADT插件的功能。在Java中,您不能直接强制子类调用方法afaik的超级实现(有关替代方法,请参见其他答案中描述的模式)。但是,请记住,在Android中,您不是直接实例化Activity对象(或Service对象),而是将Intent传递给系统,系统实例化该对象并对其调用onCreate()(以及其他生命周期方法)。因此,系统具有对Activity实例的直接对象引用,并且能够检查(大概)某些在onCreate()的超类实现中设置为true的布尔值。尽管我不知道它是如何实现的,但它可能看起来像这样:
class Activity
{
onCreate()
{
superCalled = true;
...
}
...
}
在“系统”级别的类中,它接收Intent并从中实例化Activity对象:
...
SomeActivitySubclass someActivitySubclassObject = new SomeActivitySubclass();
someActivitySubclassObject.onCreate();
if (!someActivityObject.isSuperCalled())
{
Exception e = new Exception(...) //create an exception with appropriate details
throw e;
}
我的猜测是,可能比这稍微复杂一点,但是您明白了。为了方便起见,Eclipse会自动创建调用,因为ADT插件会告诉它。祝您编码愉快!
Eclipse只是很有帮助,提醒您可以根据需要调用超类实现。
您可能会收到错误,因为您没有执行超类所必需的操作,因为您没有调用其实现。
Eclipse可以帮助您正确处理事情并避免出现异常。
来自http://developer.android.com/reference/android/app/Activity.html#onCreate(android.os.Bundle)
派生类必须调用此方法的超类的实现。如果不这样做,将引发异常。