對(duì)于我的一個(gè)程序,我需要大內(nèi)存,我用兩種不同的實(shí)現(xiàn)來(lái)完成此操作,如下: int SIZE = 1000000000; int[] rnums = new int[SIZE]; byte[] d1 = new byte[2 * SIZE]; byte[] d2 = new byte[2 * SIZE]; int SIZE = 1000000000; int[] rnums = new int[SIZE]; byte[][] d1 = new byte[SIZE][2]; byte[][] d2 = new byte[SIZE][2];兩個(gè)程序都可以工作并產(chǎn)生正確的答案,但是 2D 實(shí)現(xiàn)速度非常慢,隨著 SIZE 的增加,它變得越來(lái)越慢。其余的代碼非常相似,我不明白為什么 2D 會(huì)導(dǎo)致那么大的延遲。
為什么在java中二維數(shù)組的運(yùn)行速度明顯慢于一維數(shù)組
人到中年有點(diǎn)甜
2023-09-20 19:14:11