开发者

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

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

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜