在以下代码中:
public void connect()
{
/*
String selectedPort = "COM1";
String selectedPort = (String)window.cboxPorts.getSelectedItem();
selectedPortIdentifier = (CommPortIdentifier)portMap.get(selectedPort);
*/
}
Eclipse抱怨无法解析selectedPort。为什么它甚至在评论内部?
答案 0 :(得分:1)
首先,您需要刷新项目。
第二,清洁和重建。这必须发生,因为没有为你的java文件生成新的类文件,eclipse仍在查看以前编译的表单。