Okay, das leuchtet ein.
Ich habe der Klasse noch einen Konstruktor hinzugefügt. Jedoch kann ich den Vektor im Moment nicht mehr richtig füllen. Was mache ich falsch?
Ich habe der Klasse noch einen Konstruktor hinzugefügt. Jedoch kann ich den Vektor im Moment nicht mehr richtig füllen. Was mache ich falsch?
Code:
vector<coords> eckKoordinaten (new coords(1, 1), new coords(3, 2), new coords(2, 4), new coords(1, 3)); //error: no instance of constructor (erstes "new" wird rot unterstrichen ...)
class coords {
public:
int x, y;
coords(int x, int y) {
coords.x = x;
coords.y = y;
}
};