开发者

How can I declare an arr1 of ARRAY_SIZE with the appropriate type 64 bit integer

开发者 https://www.devze.com 2023-03-15 14:07 出处:网络
public class Sorting { static final String IN_FILE = \"sorting.txt\"开发者_如何学Python; static final int ARRAY_SIZE = 20000;

public class Sorting { static final String IN_FILE = "sorting.txt"开发者_如何学Python; static final int ARRAY_SIZE = 20000;

static public void main(String[] args) {

   int[] arr1= new int [ARRAY_SIZE];


long is 64bit, signed, two's complement integer.

long[] arr1= new long [ARRAY_SIZE];
0

精彩评论

暂无评论...
验证码 换一张
取 消