0

在以下代码中:

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

Eclipse 抱怨 selectedPort 无法解析。为什么它甚至在评论里面看?

4

1 回答 1

1

首先,您需要刷新项目。

第二,清理和重建。这一定会发生,因为没有为您的 java 文件生成新的类文件,并且 eclipse 仍在查看以前的编译形式。

于 2012-09-12T04:26:34.450 回答