NULL
博文链接:https://jeckfan.iteye.com/blog/1108756public InitialTestOfChild((
System.Out. println(" Testofchild构造方法")
public class InitialTest
public static void main (String[] args)i
new InitialTestOfChild o
输出结果为
静态内部类中执行的 firststaticoffather: firsts
(1)用于对静态字段、只读字段等的初始化。 (2)添加static关键字,不能添加访问修饰符,因为静态构造函数都是私有的。 (3)类的静态构造函数在给定应用程序域中至多执行一次:只有创建类的实例或者引用类的任何静态成员才激发静态构造函数 (4)静态构造函数是不可继承的,而且不能被直接调用。 (5)如果类中包含用来开始执行的 Main 方法,则该类的静态构造函数将在调用 Main 方法之前执行。任何带有初始