一道有关static-extends题目

Posted 翱翔天地

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了一道有关static-extends题目相关的知识,希望对你有一定的参考价值。

一道有关static-extends题目


/**
 *
 * @title:Child.java
 * @Package:com.you.hbxs.model
 * @Description:<h3>一句话描述功能</h3>
 * @author:
 * @date:2016-2-24下午10:10:48
 * @version V1.0
 *
 */
package com.you.hbxs.model;

/**
 *
 * 项目名称:HBXS
 * 类名称:Child
 * 类描述:
 * 创建人:
 * 创建时间:2016-2-24下午10:10:48
 * 修改人:
 * 修改时间:2016-2-24下午10:10:48
 * 修改备注:
 * @version V1.0
 *
 */
class Parent
{
	/**
	 * <p>title:</p>
	 * <p>Description:</p>
	 */
	public Parent()
	{
		System.out.println("Parent");
	}
	
	{
		System.out.println("I‘m your parent!");
	}
	
	static
	{
		System.out.println("静态Parent!");
	}
}

/**
 *
 * 项目名称:HBXS
 * 类名称:Child
 * 类描述:
 * 创建人:
 * 创建时间:2016-2-24下午10:41:41
 * 修改人:
 * 修改时间:2016-2-24下午10:41:41
 * 修改备注:
 * @version V1.0
 *
 */
public class Child extends Parent
{
	/**
	 * <p>title:</p>
	 * <p>Description:</p>
	 */
	public Child()
	{
		System.out.println("Child");
	}
	
	{
		System.out.println("I‘m your child!");
	}
	
	static
	{
		System.out.println("静态Child!");
	}
	
	/**
	 * 
	 * 方法名:main
	 * 方法类型:Child
	 * 参数:@param args
	 * @return :void
	 * @throws
	 */
	public static void main(String[] args) 
	{
		System.out.println("--------开始-----------");
		new Child();
		new Child();
		System.out.println("--------结束-----------");
	}

}
      运行结果:

静态Parent!
静态Child!
--------开始-----------
I‘m your parent!
Parent
I‘m your child!
Child
I‘m your parent!
Parent
I‘m your child!
Child
--------结束-----------



以上是关于一道有关static-extends题目的主要内容,如果未能解决你的问题,请参考以下文章

一道面试题目

Python123上面有关datetime库函数的使用的一道程序题求助

Vape Nation - IceCTF中的一道图片隐写

有关java类对象初始化的话题,从一道面试题切入

vbscript 各种自定义代码片段 - 有关详细信息,请参阅注释

请问大家一道电子商务考试的题目,很急,谢谢.