我正在尝试用 java 制作游戏,但遇到了一个看似简单的问题。我需要一些方法来使用循环打印出多个东西,但不是传统的方式。基本上我需要做的是:
代替:
for(int i=0;i<5;i++)
{
e.get(i);
}
我需要这样做:
for(int i=0;i<5;i++)
{
e.get(0);
e.get(1); //but 1 and above can only be there after a number has been increased past 0
e.get(2);
e.get(3);
e.get(4);
}
在哪里改变我也会改变你有多少“e.get()”。
有任何想法吗?
把事情弄清楚:
这不起作用:
public static void main(String[] args)
{
int l=5;
for(int i=0;i<l;i++)
{
for(int o=0;o<l;o++)
{
e.get(o);
}
}
}
但类似的事情会:
public static void main(String[] args)
{
e.get(0);
e.get(1); //but 1 and above can only be there after a number has been increased past 0
e.get(2);
e.get(3);
e.get(4);
}
我已经尝试过嵌套的 for 循环,但它不适用于我的程序。为了让我的程序正常工作,每个“e.get(0);” 需要亲自到场。
抱歉,如果我说不清楚,我已经连续编程了 6 个小时,并且正在接近一堵墙:/