我一直在阅读这个:http ://docs.oracle.com/javase/tutorial/uiswing/components/passwordfield.html但我有一个问题。我有一个简单的方法来检查 my JTextField
s 和 my JPasswordField
s 是否为空
所以我有这个:
private boolean addCustomerCheckValidInfo()
{
for(JPasswordField pf : newCustomerPasswordFields)
{
if (pf.getPassword().length == 0);
{
System.out.println("Password length " + pf.getPassword().length);
return false;
}
}
return true;
}
同样返回 false 并在控制台中写入:
Password length 3
正如我在 oracle 指南中所读到的那样, passfield.getPassword().length 应该返回长度(就像它在 system.print.out 中所做的那样),但是为什么它在大于 0 时等于 0 时会失败?