gpt4 book ai didi

java - ByteBuffer.allocate 在构造函数中

转载 作者:行者123 更新时间:2023-11-29 05:43:01 24 4
gpt4 key购买 nike

在我的代码中,我有一个带有 ByteBuffer 和两个构造函数的类。根据构造函数,我想为 ByteBuffer 分配不同的空间。

ByteBuffer data = ByteBuffer.allocate(1);

1st_constructor(arg1, arg2, arg3){
data = ByteBuffer.allocate(5);
}

1st_constructor(arg1, arg2){
data = ByteBuffer.allocate(10);
}

我想知道,这是执行此操作的正确方法吗?我只在构造函数外部声明了 ByteBuffer,因为我认为这是实例化对象能够访问它的唯一方法(虽然不确定这是否正确?)

感谢您的帮助。

最佳答案

正确的做法是:

final ByteBuffer data;

1st_constructor(arg1, arg2, arg3){
data = ByteBuffer.allocate(5);
}

1st_constructor(arg1, arg2){
data = ByteBuffer.allocate(10);
}

关于java - ByteBuffer.allocate 在构造函数中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16849182/

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