这个程序怎么改?错误:公用类型 StaticInitialization 必须在它自己的文件中定义
publicclassBowl{Bowl(intmaker){System.out.println("Bowl("+maker+")");}voidf(intmaker)...
public class Bowl
{
Bowl(int maker)
{
System.out.println("Bowl(" + maker + ")");
}
void f(int maker)
{
System.out.println("f(" + maker + ")");
}
}
class Table
{
static Bowl b1 = new Bowl(1);
Table()
{
System.out.println("Table()");
b2.f(1);
}
void f2(int maker)
{
System.out.println("f2(" + maker + ")");
}
static Bowl b2 = new Bowl(2);
}
class Cupboard
{
Bowl b3 = new Bowl(3);
static Bowl b4= new Bowl(4);
Cupboard()
{
System.out.println("Cupboard()");
b4.f(2);
}
void f3(int maker)
{
System.out.println("f3(" + maker + ")");
}
static Bowl b5= new Bowl(5);
}
public class StaticInitialization
{
public static void main(String[] args)
{
System.out.println("Creating in main");
new Cupboard();
System.out.println("Creating in main");
new Cupboard();
t2.f2(1);
t3.f3(1);
}
static Table t2 = new Table();
static Cupboard t3 = new Cupboard();
} 展开
{
Bowl(int maker)
{
System.out.println("Bowl(" + maker + ")");
}
void f(int maker)
{
System.out.println("f(" + maker + ")");
}
}
class Table
{
static Bowl b1 = new Bowl(1);
Table()
{
System.out.println("Table()");
b2.f(1);
}
void f2(int maker)
{
System.out.println("f2(" + maker + ")");
}
static Bowl b2 = new Bowl(2);
}
class Cupboard
{
Bowl b3 = new Bowl(3);
static Bowl b4= new Bowl(4);
Cupboard()
{
System.out.println("Cupboard()");
b4.f(2);
}
void f3(int maker)
{
System.out.println("f3(" + maker + ")");
}
static Bowl b5= new Bowl(5);
}
public class StaticInitialization
{
public static void main(String[] args)
{
System.out.println("Creating in main");
new Cupboard();
System.out.println("Creating in main");
new Cupboard();
t2.f2(1);
t3.f3(1);
}
static Table t2 = new Table();
static Cupboard t3 = new Cupboard();
} 展开
3个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询