gpt4 book ai didi

java - 这段java代码有问题吗?

转载 作者:行者123 更新时间:2023-12-01 16:39:17 25 4
gpt4 key购买 nike

Possible Duplicate:
Is it better to create a new object and return it or create the new object in the return statement?

大家好,

有人可以解释一下第一种方法是否比第二种方法更糟糕吗?

public byte[] getBytesForSource() throws IOException {
Preconditions.checkNotNull(this.fSource, "Raw source does not exist.");
byte[] baFile = Files.toByteArray(this.fConvertedSource);
return baFile;
}

对比

public byte[] getBytesForSource() throws IOException {
Preconditions.checkNotNull(this.fSource, "Raw source does not exist.");
return Files.toByteArray(this.fConvertedSource);
}

我知道第一个实例化一个字节数组并返回它,但是,第二个也返回一个字节数组......

那么为什么第二个更好呢?

最佳答案

它们是相同的。第二个有点简洁。

有时引入中间变量来分解冗长的链调用可以提高可读性,但这在您的情况下绝对是正确的。

关于java - 这段java代码有问题吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5722545/

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