1

私は QCustomPlot の初心者であり、基本的な使用法に関する QCustomPlot の最初の例を開始したいと考えていました。次のコードでは: デバッグしようとしているときにプログラムを停止するブレークポイントが常にあります (エラーはなく、ビルドは正常に完了します)。

QCustomPlot *customPlot;

QVector<double> x(101), y(101); 
for (int i=0; i<101; ++i) {
  x[i] = i/50.0 - 1; // x goes from -1 to 1
  y[i] = x[i]*x[i]; // let's plot a quadratic function
}
customPlot->addGraph();
customPlot->graph(0)->setData(x, y);
customPlot->xAxis->setLabel("x");
customPlot->yAxis->setLabel("y");
customPlot->xAxis->setRange(-1, 1);
customPlot->yAxis->setRange(0, 1);
customPlot->replot();

}

表示されるエラーは次のとおりです。

Unhandled exception at 0x58e828f1 (QtCored4.dll) in ex4.exe: 0xC0000005: 
Access violation reading location 0x00000050.

ブレークポイントはここにあります (QList.h ファイル):

inline int size() const { return d->end - d->begin; }
4

1 に答える 1

-1

してみてください:

x[i] = i/50 - 1;

うまくいっている

于 2017-02-21T08:25:27.043 に答える