本文介绍了如何检查char数组是否有一个空单元格,所以我可以打印0?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
代码:
public void placeO(int xpos,int ypos){
for(int i = 0; i for(int j = 0; j //下面的行不起作用。我可以用什么来取代这个?
if(position [i] [j] ==''){
position [i] [j] ='0';
}
}
}
解决方案>
更改为: if(position [i] [j] == 0)
每个char都可以与int比较。
对于char数组元素,默认值为'\\\'
即 0
。
这正是你的意思是空单元格
,我假设。
要测试此操作,您可以运行此操作。
public static void main(String [] args){
char [] [] x = new char [3] [3]
for(int i = 0; i for(int j = 0; j if(x [i] [j] = 0){
System.out.println(This char is zero。);
}
}
}
}
}
Code:
public void placeO(int xpos, int ypos) {
for(int i=0; i<3;i++)
for(int j = 0;j<3;j++) {
// The line below does not work. what can I use to replace this?
if(position[i][j]==' ') {
position[i][j]='0';
}
}
}
解决方案
Change it to: if(position[i][j] == 0)
Each char can be compared with an int.
The default value is '\u0000'
i.e. 0
for a char array element.
And that's exactly what you meant by empty cell
, I assume.
To test this you can run this.
class Test {
public static void main(String[] args) {
char[][] x = new char[3][3];
for (int i=0; i<3; i++){
for (int j=0; j<3; j++){
if (x[i][j] == 0){
System.out.println("This char is zero.");
}
}
}
}
}
这篇关于如何检查char数组是否有一个空单元格,所以我可以打印0?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!