我无法运行While循环。错误消息如下:
Thread [main] (Suspended (The method While(boolean) is undefined for the type While_loop_App))
While_loop_App.main(String[]) line: 11
我该怎么办?
答案 0 :(得分:2)
方法语法应为:UWP
其中while(boolValue)
是您在循环中传递的布尔值。
请注意boolValue
全部为小写。理想情况下,在输入代码时,你的eclipse应该会给你一个错误。
答案 1 :(得分:1)
使用while
(小写w
)代替While
。