itgle.com

Java Applet的几个方法的执行顺序,正确的是( )。A.init→start→destroy→stopB.init→start→stop→destroyC.start→init→destroy→stopD.start→init→stop→destroy

题目

Java Applet的几个方法的执行顺序,正确的是( )。

A.init→start→destroy→stop

B.init→start→stop→destroy

C.start→init→destroy→stop

D.start→init→stop→destroy


相似考题
更多“Java Applet的几个方法的执行顺序,正确的是()。A.init→start→destroy→stopB.init→start→stop→dest ”相关问题
  • 第1题:

    当-个Applet被加载,后续对Applet生命周期方法的调用中,可能存在的次序是( )。

    A.start( ),stop( ),destroy( )

    B.init( ),start( ),stop( ),start( ),stop( ),destroy( )

    C.start( ),init( ),stop( ),destroy( )

    D.init( ),start( ),destroy( )


    正确答案:B
    init()-般用来完成所有必需的初始化操作,start()是在初始化之后Applet被加载时调用,stop()在Applet停止执行时调用,destory()是Applet从系统中撤出时调用。

  • 第2题:

    下列选项中,属于Applet生命周期方法的是()

    A.init(),start(),destroy()

    B.draw(),init(),start()

    C.update(),start(),stop()

    D.start(),paint(),stop()


    init(),start(),destroy()

  • 第3题:

    执行Java小应用程序时首先会调用其中的()方法。

    A.init()

    B.start()

    C.stop()

    D.destroy()


    init()

  • 第4题:

    在Java中,Applet小程序用于把事物从不活跃状态转为活跃状态的方法是( )。

    A.init( )

    B.stop( )

    C.start( )

    D.destroy( )


    正确答案:C

  • 第5题:

    在Applet的方法中,下列哪个方法将在关闭浏览器时执行,以释放Applet占用的资源?

    A.init()

    B.start()

    C.stop()

    D.destroy()


    D