Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は次のような構造体でリストを使用しようとしています:
typedef struct _MS { DWORD id; std::list<std::wstring> titles; } MS;
しかし、いざ使おうとすると問題が発生します。
実行時にデバッガーの下で見ると、'titles = 0xcdcdcdcd' になり、呼び出そうとする_iterator = MS.titles.begin()と、メモリ アクセス違反で失敗します。
_iterator = MS.titles.begin()
私は何を間違っていますか?
この値0xcdcdcdcdは、MSコンパイラが削除されたメモリをマークするために使用されます。
0xcdcdcdcd
問題はstd::list、ではなく、削除されたオブジェクトへのポインタの使用にある可能性があります。
std::list