SystemTray.getSystemTray()错误,找不到类

时间:2017-11-26 10:39:47

标签: java system-tray

我的代码有问题。我的IDE(NetBeans)显示没有像“.getSystemTray()”这样的类。我到处寻找,但我找不到答案。你知道为什么会这样吗?

这一行 -

  

final SystemTray tray = new SystemTray.getSystemTray();

不行。

提前感谢您的帮助

此致

有一个代码:

int main(){
        MyVector<int> test;
        test.pushBack(5);
        test.pushBack(10);
        test.pushBack(15);
        test.pushBack(20);
        test.pushBack(25);     

        for(int i = 0; i < test.getCapacity(); i++) {
            cout << test[i] << ", ";
        }  
    }

1 个答案:

答案 0 :(得分:0)

好吧,我不知道SystemTray上课。

您需要删除new关键字,并按如下所示进行操作:

final SystemTray tray = SystemTray.getSystemTray();