我正在尝试编写代码来遍历类型的集合InstallationComponentSetup
:
java.util.Collection<InstallationComponentSetup> components= context.getInstallationComponents();
Iterator it = components.iterator();
while (it.hasNext())
{
if (((InstallationComponentSetup)it).getName() == "ACQ")
{
return true;
}
}
- 语句中的if
强制转换失败,但我真的不知道为什么(我是 C++ 程序员!)。
如果有人能给我一些关于我做错了什么的指示,我将不胜感激。