gpt4 book ai didi

java - 字节 ['?' ] 在 Java 中是什么意思?

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

我有一个问题。我不知道 byte['?'] 是什么意思;它适用于所有类型的数组,但我很好奇它的实际作用。

private void copy(InputStream in, File file) {
try {
OutputStream out = new FileOutputStream(file);
byte[] buf = new byte['?'];
int len;
while ((len = in.read(buf)) > 0) {
out.write(buf, 0, len);
}
out.close();
in.close();
} catch (Exception localException) {
}

最佳答案

表达式 '?' 是一个 char。它可以隐式转换为整数int

new byte[arraySize] 要求 arraySizeint 类型。因此,'?'被转换为整数,语句变为:

byte[] buf = new byte[63];

因为 63 == (int)'?'

关于java - 字节 ['?' ] 在 Java 中是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48731749/

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