Java examples for java.lang:int Array
Copy an array of signed values in int, into an array of long. Sign extension is performed.
//package com.java2s; public class Main { public static void main(String[] argv) throws Exception { int[] src = new int[] { 34, 35, 36, 37, 37, 37, 67, 68, 69 }; System.out.println(java.util.Arrays .toString(copySignedIntToLongArray(src))); }//from w ww . java 2 s .com /** * <p>Copy an array of signed values in int, into an array of long.</p> * * <p>Sign extension is performed.</p> * * @param src an array of int, whose values are interpreted as signed * @return an array of long */ static public long[] copySignedIntToLongArray(int[] src) { if (src == null) return null; int n = src.length; long[] dst = new long[n]; for (int j = 0; j < n; ++j) { dst[j] = src[j]; // allow sign extension } return dst; } }