You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

QVector on dynaamisesti kasvava vektori QVector on luokkamalli template. Tämä tarkoittaa sitä, vektoria luotaessa esimerkiksi seuraavasti
QVector <int> dVektori;

kulmasulkeiden sisällä määrätään vektorin alkioiden tyyppi

#ifndef DIALOG_H
#define DIALOG
#include <QtGui/QDialog>
#include <QVector>

namespace Ui
{
    class Dialog;
}

class Dialog : public QDialog
{
    Q_OBJECT
public:
    Dialog(QWidget *parent = 0);
    ~Dialog();
private:
    Ui::Dialog *ui;
    QVector <double> dVektori;//otsikkotiedostossa ei voi alustaa vektorin kokoa EI esim. dVektori(10)
private slots:
    void LaskeVektoreilla();
    void LinkitettyLista();
};

#endif // DIALOG_H
  • No labels
You must log in to comment.