gpt4 book ai didi

java - 以下代码的类似代码是什么?

转载 作者:行者123 更新时间:2023-12-04 00:32:35 26 4
gpt4 key购买 nike

我试图理解以下代码:

this.area[y][x + i] = tmp != null ? String.valueOf(tmp.charAt(i)) : " ";

这和下面的代码类似吗?

if(tmp != null){
this.area[y][x + i] = String.valueOf(tmp.charAt(i));
} else {
this.area[y][x + i] = "";
}

最佳答案

不,它们不一样!你有空位 ternary operator ,但不在 if-else 中。相同/相似的代码是,

if(tmp != null){
this.area[y][x + i] = String.valueOf(tmp.charAt(i));
} else {
this.area[y][x + i] = " "; //observe white-space, maybe important for your case
}

关于java - 以下代码的类似代码是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29966727/

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