// onjava/Range.java// (c)2017 MindView LLC: see Copyright.txt// We make no guarantees that this code is fit for any purpose.// Visit http://OnJava8.com for more book information.// Array creation methods that can be used without// qualifiers, using static imports:package onjava;public class Range {// Produce a sequence [0..n)public static int[] range(int n) {int[] result = new int[n];for(int i = 0; i < n; i++)result[i] = i;return result;}// Produce a sequence [start..end)public static int[] range(int start, int end) {int sz = end - start;int[] result = new int[sz];for(int i = 0; i < sz; i++)result[i] = start + i;return result;}// Produce sequence [start..end) incrementing by steppublic staticint[] range(int start, int end, int step) {int sz = (end - start)/step;int[] result = new int[sz];for(int i = 0; i < sz; i++)result[i] = start + (i * step);return result;}}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。