Type mismatch: cannot convert from int to boolean in while loop(类型不匹配:无法在 while 循环中从 int 转换为 boolean)
问题描述
我刚开始学习java,试图找到答案,但我想我不够聪明.我正在尝试将从某个文件中获取的数组写入另一个文件.
I just started learning java, tried to find the answer but I guess I'm not smart enough. I'm trying to write an array which I got from some file into another file.
问题是当我试图让while"时,它表示无法从 int 转换为 boolean.任何人都可以提出一些建议.先感谢您.这就是我所拥有的:
The problem is when I'm trying to make "while" it's saying cannot convert from int to boolean. Can anyone suggest something. Thank you in advance. This is what I have :
public void savethefile() throws IOException{
File file1= new File("lala.ppm");
FileWriter save=new FileWriter(file1);
save.write(tytul);
while(i){
save.write(arraycomment[i]);
i++;
}
save.close();
推荐答案
大概 i
是一个 int
,而不是 boolean
.与 C/C++ 不同,这不会被隐式转换为 boolean
.您必须将您的条件明确声明为 boolean
.
Presumably i
is an int
, not a boolean
. Unlike C/C++, this won't be converted to a boolean
implicitly. You must explicitly state your condition as a boolean
.
while (i < arraycomment.length) // or some other constant
这篇关于类型不匹配:无法在 while 循环中从 int 转换为 boolean的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:类型不匹配:无法在 while 循环中从 int 转换为 boolean
基础教程推荐
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- 降序排序:Java Map 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01