クラスへのポインタのベクトルのコンストラクタを構築する必要があります...
私のクラスは:
class Song {
string song_name;
string auther_name;
int popularity;
SongStructure song_format;
int song_length;
int lengths[size];
bool first_condition_true();
bool second_condition_true(int index);
}
};
私のベクトルは:
vector<Song*> play_list;