假设我们有一个盒子类:
class Box
{
private int width;
private int height;
//Box Constructor
public Box( int height )
{
this.height = height;
width = 450;
}
}
以及我们主要的一系列 Box 对象:
Box Box1 = new Box(147);
Box Box2 = new Box(178);
Box Box3 = new Box(784);
有没有办法使用“for”循环来遍历这些对象?另外,您将如何让计算机为我们创建类对象?例如。使用以下方法创建 10 个对象:
for( int i=0; i>10; i++)
{
//method
}