我想初始化对象属性,但它只是一直说类型不匹配。如何纠正它?
#include <stdio.h>
#include <stdlib.h>
#include <iostream>
using namespace std;
class Student{
public:
int nr_ID;
char nazwisko[40];
char imie[40];
double punkty;
Student* next;
Student(int nr_ID, char nazwisko[40], char imie[], double punkty){
this->nr_ID = nr_ID;
this->nazwisko = nazwisko;//HERE
this->imie = imie;//HERE
this->punkty = punkty;
next = NULL;
}
~Student(){}
};