我平时使用的Java 运行结构
public class test1
{
public static void main(String[] args)
{
new test1();//main中包构造函数
}
public test1()//构造函数定义
{
zhixing1();//构造函数中包执行函数
}
public void zhixing1()//执行函数定义
{
}
}