gpt4 book ai didi

Java:直接 IntBuffer 的大小限制?

转载 作者:行者123 更新时间:2023-12-02 09:43:44 28 4
gpt4 key购买 nike

我想在 Java 中分配一个直接 IntBuffer,比如说 10 亿个元素(64 位系统)。我知道的唯一方法是创建一个直接 ByteBuffer 并将其视为直接 IntBuffer。但是,4*1,000,000,000 超过了 Integer.MAX_VALUE,所以我的问题是:如何实现我的目标?

int numInts = 1_000_000_000;
IntBuffer i = IntBuffer.allocate(numInts); // works!

ByteBuffer bb = ByteBuffer.allocateDirect(4*numInts); // does NOT work: integer overflow
IntBuffer ib = bb.asIntBuffer();
System.out.println("This will never be printed");

提前非常感谢,

马库斯

最佳答案

也许您可以尝试创建一个基于 BigInteger 的缓冲区。有些人在 Github 上创建了一个“BigIntbuffer”类,它可以给你带来启发: See here

关于Java:直接 IntBuffer 的大小限制?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32990530/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com