我定義了一個類student 然後想定義一個類數組student students【10】。但是結果是不可以會出問題 ,網上查了是和構造函數有關?我不是很懂,想請教一下大家如何在c++中定義類數組,謝謝~
例如
#include <iostream>
using namespace std;
class Student
{
public:
int value;
int score;
};
int main()
{
Student *students = new Student[10];
students[0].value = 10;
students[0].score = 100;
cout << students[0].value << " " << students[0].score << endl; // 輸出 10 100
return 0;
}