1

作成した非stlクラスを含む3次元マップを作成しようとしています。インスタンス化された変数(スタック内にあると思われる)をマップに割り当てようとすると、コンパイラーが失敗します。

私が実行した場合、それは動作します:

volume[x][y][z] = Chunk()

しかし、私が実行した場合はそうではありません:

Chunk c();
volume[x][y][z] = c;

簡単な例を次に示します。

#include <cstdlib>
#include <map>
#include <stdint.h>

using namespace std;

class Chunk {
public:
    Chunk();
    Chunk(const Chunk& orig);
    virtual ~Chunk();
};

Chunk::Chunk(){

}

Chunk::Chunk(const Chunk& orig) {
}

Chunk::~Chunk() {
}

/*
 *
 */
int main(int argc, char** argv) {
    map<uint32_t, map<uint32_t, map<uint32_t, Chunk > > > volume;
    int32_t width = 5, height = 5, depth = 5;
    for(uint32_t x = 0; x < width; x++){
        for(uint32_t y = 0; y < height; y++){
            for(uint32_t z = 0; y < depth; y++){
                Chunk c();
                volume[x][y][z] = c;
            }
        }
    }
    return 0;
}

この例では、次のコンパイルエラーが発生します。

g++    -c -g -MMD -MP -MF build/Debug/GNU-Linux-x86/main.o.d -o build/Debug/GNU-Linux-x86/main.o main.cpp
main.cpp: In function ‘int main(int, char**)’:
main.cpp:41:35: error: no match for ‘operator=’ in ‘(&(& volume.std::map<_Key, _Tp, _Compare, _Alloc>::operator[] [with _Key = unsigned int, _Tp = std::map<unsigned int, std::map<unsigned int, Chunk> >, _Compare = std::less<unsigned int>, _Alloc = std::allocator<std::pair<const unsigned int, std::map<unsigned int, std::map<unsigned int, Chunk> > > >, std::map<_Key, _Tp, _Compare, _Alloc>::mapped_type = std::map<unsigned int, std::map<unsigned int, Chunk> >, std::map<_Key, _Tp, _Compare, _Alloc>::key_type = unsigned int]((*(const key_type*)(& x))))->std::map<_Key, _Tp, _Compare, _Alloc>::operator[] [with _Key = unsigned int, _Tp = std::map<unsigned int, Chunk>, _Compare = std::less<unsigned int>, _Alloc = std::allocator<std::pair<const unsigned int, std::map<unsigned int, Chunk> > >, std::map<_Key, _Tp, _Compare, _Alloc>::mapped_type = std::map<unsigned int, Chunk>, std::map<_Key, _Tp, _Compare, _Alloc>::key_type = unsigned int]((*(const key_type*)(& y))))->std::map<_Key, _Tp, _Compare, _Alloc>::operator[] [with _Key = unsigned int, _Tp = Chunk, _Compare = std::less<unsigned int>, _Alloc = std::allocator<std::pair<const unsigned int, Chunk> >, std::map<_Key, _Tp, _Compare, _Alloc>::mapped_type = Chunk, std::map<_Key, _Tp, _Compare, _Alloc>::key_type = unsigned int]((*(const key_type*)(& z))) = c’
main.cpp:41:35: note: candidate is:
main.cpp:14:7: note: Chunk& Chunk::operator=(const Chunk&)
main.cpp:14:7: note:   no known conversion for argument 1 from ‘Chunk()’ to ‘const Chunk&’
make[2]: *** [build/Debug/GNU-Linux-x86/main.o] Error 1
make[2]: Leaving directory `/home/sean/NetBeansProjects/test3dmap'
make[1]: *** [.build-conf] Error 2
make[1]: Leaving directory `/home/sean/NetBeansProjects/test3dmap'
make: *** [.build-impl] Error 2


BUILD FAILED (exit value 2, total time: 213ms)

代わりに、次のような3Dマップを作成する必要があると思います。

map<uint32_t, map<uint32_t, map<uint32_t, Chunk* > > > volume;

ただし、回避したい自分のコードでメモリ管理を実行する必要があります。表示されているマップの例を機能させるにはどうすればよいですか?

4

2 に答える 2

3

Chunk c();関数宣言です。試してみてくださいChunk c;

PS http://en.wikipedia.org/wiki/Most_vexing_parseも参照してください(上記のリンクのChadの回答で指摘されているように、これはまったく同じではありませんが、知っておくとよいでしょう)。

于 2012-11-30T21:39:30.150 に答える
1

C++FAQを参照してください。行列は、を使用して()より適切に開発され[]ます。
リンクは次のとおりです。C++FAQ:行列演算子のオーバーロード

于 2012-11-30T21:42:23.700 に答える