第一次在这里写。我已经看到了像我这样的其他几个问题,但无法解决我的问题。我有 4 个课程:歌曲、播放列表、专辑、艺术家。播放列表由一系列歌曲组成。专辑继承了播放列表并具有更多功能,艺术家由专辑数组和其他一些东西组成。
Album(char* _name, Song* songs,int _sales ,int _year,int n):Playlist(songs,n)
{
name = new char[strlen(_name)+1];
strcpy(name,_name);
salesCount=_sales;
year = _year;
};
Playlist::Playlist(Song* _songlist, int n)
{
if(n > 20)
{
cout<<"The number of song must be lesser or equal to 20"<<endl;
return;
}
SongList = new Song[n];
for(int i = 0 ; i<n; i++)
{
SongList[i] = _songlist[i];
}
numberOfSongs=n;
}
当我使用这个构造函数创建一个专辑时,我没有任何问题,但是当我尝试创建一个专辑数组时,它由使用这个构造函数创建的专辑组成,我遇到了内存访问冲突。有任何想法吗 ?
好的,所以我稍微更新了我的代码。这是我在主要方法中尝试做的事情:
Song newSong("My Song", 9, 231),mySong("Your Song", 8 , 180),yourSong("His Song",7,135), herSong("Her Song",8,431);
Song songs[4] = {newSong, mySong,yourSong,herSong};
Album yourAlbum("My Album",songs,200000, 2010, 4);
yourAlbum.PrintInfo(); //<------- WORKS
Album albums[1]; //<------ It calls the deffault constructor of Album and after it gives me //"Source not available"
//When I try to declare it like this Album albums[1] = { yourAlbum } ; it gives me access violation
Artist myArtist("blake", albums);
myArtist.PrintArtistInfo();