作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
对于一项大学作业,我需要用 Java 创建一个管理 3 个专辑的程序。我想使用 for 循环列出有关这些专辑的信息来压缩我的代码,但是,我们不允许使用数组。有没有办法访问像 albumX 这样的变量,例如
for (X=1;X<=3;X++)
{
System.out.println("Album 1 is called" + albumX.getName());
}
最佳答案
在for循环中声明多个变量示例 此 Java 示例展示了如何在 Java For 循环中使用声明多个变量 声明 block 。
public class DeclaringMultipleVariablesInForLoopExample {
public static void main(String[] args) {
/*
* Multiple variables can be declared in declaration block of for loop.
*/
for(int i=0, j=1, k=2 ; i<5 ; i++)
System.out.println("I : " + i + ",j : "+ j + ", k : " + k);
/*
* Please note that the variables which are declared, should be of same type
* as in this example int.
*/
//THIS WILL NOT COMPILE
//for(int i=0, float j; i < 5; i++);
}
}
关于java - 从名称为variableX的变量中检索数据 - Java,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60913730/
我是一名优秀的程序员,十分优秀!