私はプログラミングを始めていますが、英語が下手で申し訳ありません。
私は配列の代わりに、構造体の中で次のようなリストを使用するのが好きです:
#include <iostream>
#include <list>
using namespace std;
struct Market {
string b;
list <int> prices;
};
int main()
{ list <int> precios;
Market m1 = {"a",NULL};
return 0;
}
しかし、私はint' to non-scalar type std::list<int, std::allocator<int> >
要求されたからこのエラー変換を取得します|
これは可能ですか?多分mallocまたは無料で?