if ( amp;isEmpty == 1 && isLegal == 1)
时间: 2024-04-14 16:29:17 浏览: 118
这段代码看起来有一些问题。首先,`amp;isEmpty` 是一个不正确的变量名,它可能是由于 HTML 实体编码引起的错误。其次,逻辑运算符 `&&` 在这里似乎被错误地写作了 `&&`。
修正后的代码应该是这样的:
```java
if (isEmpty == 1 && isLegal == 1)
```
请注意,如果您使用的是其他编程语言,请将 `java` 替换为相应的语言。同时,确保 `isEmpty` 和 `isLegal` 是正确定义并赋值的变量。
相关问题
file.isEmpty() && file == null
The method file.isEmpty() checks if a file exists and is empty. It returns true if the file exists and has a size of 0 bytes, otherwise it returns false. This method is useful to check if a file is ready to be written to or if it needs to be cleared first.
阅读全文