gpt4 book ai didi

java - createBufferStrategy 不能作为变量?

转载 作者:行者123 更新时间:2023-11-30 06:06:00 25 4
gpt4 key购买 nike

标题大致概括了这一点。为什么我不能这样做?

private void render() {
bs = window.getCanvas().getBufferStrategy();

if (bs == null) {
bs = window.getCanvas().createBufferStrategy(3); // this is the line with the error: cannot convert from void to BufferStrategy.
}
}

但是我可以在没有变量的情况下执行createBufferStrategy(3)。这是为什么?

最佳答案

createBufferStrategy 返回void (或者,嗯,不返回任何内容)。它不会返回 BufferStrategy它创造。

关于java - createBufferStrategy 不能作为变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51338807/

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