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

Compare with Current View Page History

« Previous Version 6 Next »

QVector on dynaamisesti kasvava vektori ja 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 muttei vektorin kokoa(dynaamisuus). Tyyppi voi olla mikä tahansa C:n tyyppi.

Otsikkotiedostoon tulee lisää

#include <QVector>
.
.
.
    QVector <double> dVektori;//otsikkotiedostossa ei voi alustaa vektorin kokoa EI esim. dVektori(10)
    QVector <int> iVektori;
    QVector <float> fVektori;
.
.
.
};
  • No labels
You must log in to comment.