0

我有同一个应用程序的 2 个版本,在使用图形 UI 和 QT 的版本中,我有一个运行时错误:

first-chance exception  access violation writing location 

this->secondi_totali = someint;

在模型方法中启动。我的模型类是:

class Model {

public:

friend class Controller; //dico che controller può accedere alle cose private
//friend class cronometro_qt;


/*costruttore*/
Model();


void set(int,int,int);
int get_secondi();
int get_minuti();
int get_ore();
void tick();


private:
int secondi_totali;
int secondi_trascorsi;

int secondi;
int minuti;
int ore;

};

导致异常的方法是这样的:

void crono::Model::set(int ore, int minuti, int secondi) {
this->secondi_totali =  ore * 3600 + 60 * minuti + secondi;
this->secondi_trascorsi = 0;
 }

并在堆栈中从此方法调用:

void crono::Controller::set(int ore, int minuti, int secondi) {

this->modello->set(ore, minuti, secondi);

}

this->modello 显然是一个指向 Controller 项内的 Model 对象的指针。

正如我之前所说,我已经完成了我的程序的 2 个版本。

首先,控制器的 set() 方法被一个空类视图的简单方法调用。

在第二个版本中,控制器的 set() 方法由

void crono::cronometro_qt::on_pushButton_clicked() { /* ... */ }

方法。

显然,在这两个版本中,空视图或 cronometro_qt ( QMainWindow 的子类)都有一个指向控制器的指针,以便像这样调用 set() 方法:

this->controller->set(ore,minuti, secondi);

那么为什么 QT 版本会抛出这个异常呢?

4

1 回答 1

0

在初始化变量之前进入应用程序的事件循环 (a.exec())。exec() 在应用程序退出之前不会返回。将初始化移到 a.exec() 上方。

于 2013-02-06T10:18:08.493 回答