前提・実現したいこと
c++でプログラミングを行っています.
クラスからオブジェクトを任意の数iだけ生成したいです.
具体的には以下のハードコーディングのコードから,オブジェクトを任意の個数生成できるコードに変えたいです.
cpp
1CHoge hoge1; 2CHoge hoge2; 3Choge hoge3; 4Choge hoge4; 5... 6Choge hogen; 7
インデックスをループで回し,変数名+インデックスの形を考えましたが,c++では難しいようです.
該当のソースコード
現在はループでオブジェクトをi個ほど生成して,ベクター型に入れるということを行っています.
しかしエラーが発生してしまいます.
cpp
1std::vector<Choge> choge_vector; 2for( int i = 0; i < 4 ; i ++ ){ 3 Choge hoge; 4 choge_vector.push_back(hoge); 5}
error
/usr/include/c++/7/ext/new_allocator.h: In instantiation of ‘void __gnu_cxx::new_allocator<_Tp>::construct(_Up*, _Args&& ...) [with _Up = Joint; _Args = {const Joint&}; _Tp = Joint]’: /usr/include/c++/7/bits/alloc_traits.h:475:4: required from ‘static void std::allocator_traits<std::allocator<_CharT> >::construct(std::allocator_traits<std::allocator<_CharT> >::allocator_type&, _Up*, _Args&& ...) [with _Up = Joint; _Args = {const Joint&}; _Tp = Joint; std::allocator_traits<std::allocator<_CharT> >::allocator_type = std::allocator<Joint>]’ /usr/include/c++/7/bits/stl_vector.h:943:30: required from ‘void std::vector<_Tp, _Alloc>::push_back(const value_type&) [with _Tp = Joint; _Alloc = std::allocator<Joint>; std::vector<_Tp, _Alloc>::value_type = Joint]’ /src/.cpp:20:23: required from here /usr/include/c++/7/ext/new_allocator.h:136:4: error: binding reference of type ‘Joint&’ to ‘const Joint’ discards qualifiers { ::new((void *)__p) _Up(std::forward<_Args>(__args)...); } ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
よろしくお願いいたします.
回答2件
あなたの回答
tips
プレビュー