这是python 2.7代码及其输出
i = [0 for i in range(5)]
输出:
[0, 0, 0, 0, 0]
用Java最接近的代码是什么?
答案 0 :(得分:1)
这是最接近的代码:
public class Stackoverflow_03262019 {
public static void main(String[] args) {
int[] arr=new int[5];
Arrays.fill(arr,0);
Arrays.stream(arr).forEach(val-> System.out.println(val));
}
}
```
You can add any value instead of 0;