根据标准书,构造函数是一种特殊类型的函数,用于初始化对象。由于构造函数被定义为函数,内部类函数只能有两种类型,静态或非静态。我怀疑构造函数是什么?
1.)As constructor is called without object so it must be static
Test test =new Test();//Test() is being called without object
so must be static
我的疑问是构造函数是否是静态方法,那么我们如何在构造函数中频繁使用它
Test(){
System.out.println(this);
}
输出是否Test@12aw212
意味着构造函数是非静态的?