Eclipse Java在评论中发现“无法解决”错误?

时间:2012-09-12 03:59:14

标签: java eclipse

在以下代码中:

public void connect()
{
/*      
    String selectedPort = "COM1";
    String selectedPort = (String)window.cboxPorts.getSelectedItem();
    selectedPortIdentifier = (CommPortIdentifier)portMap.get(selectedPort);
*/ 
}

Eclipse抱怨无法解析selectedPort。为什么它甚至在评论内部?

1 个答案:

答案 0 :(得分:1)

首先,您需要刷新项目。

第二,清洁和重建。这必须发生,因为没有为你的java文件生成新的类文件,eclipse仍在查看以前编译的表单。