标题大致总结了一下。为什么我不能这样做?
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)。为什么会这样?