如何在qt中使用静态变量?

时间:2016-04-19 14:27:34

标签: c++ qt static-variables

如何在qt中使用静态变量?

我试过了:

#ifndef TEST_H
#define TEST_H

#include <QObject>

class Test : public QObject
{
    Q_OBJECT
public:
    explicit Test(QObject *parent = 0);
    static int a;
signals:

public slots:
};

#endif // TEST_H

但我无法读取数据。

int b = Test::a;

0 个答案:

没有答案