首页 > 代码库 > nums.length&nums[i]
nums.length&nums[i]
private void ex01()
{
int[] nums = { 8, 10, 3, 4, 12, 200 };
for (int i = nums.length - 1; i >= 1; i--)
{
System.out.println(nums.length);
if (i == 1)
{
System.out.println(nums[i]);
}
else
{
nums[i - 1] = nums[i];
System.out.format("%d,", nums[i]);
}
}
}
the output above are: 200, 200, 200, 200, 200
you should understand nums.length start counting at 1, nums[i] start counting at 0
nums.length&nums[i]
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。