1

連続メモリに新しい配置を使用する際にいくつかの問題が発生しています。他に方法がある場合は、ガイドしてください。
私のコードを参照してください。

#include <new>  
//================================================
class MyClass
{
 private:
    int ma;
 public:
    MyClass():ma(-1){}      
};
//===========================================

int main()
{
    // I am allocating the memory for holding 10 elements of MyClass on heap
    void* pMyClass = ::operator new(sizeof(MyClass)*10);

    //! Note :: the address of pMyClass1 and pMyClass will now point to same   
    //location after calling placement new  

    MyClass* pMyClass1 = :: new(pMyClass)MyClass();  

    //! Problem with this is that, 
    //! i can only instantiate the constructor for the  base address. That is 
    //!  pMyClass[0]. 
    //! If i have to instantiate it for all the other instances, 
    //! that is pMyClass[1] to pMyClass[9], then how to do it ?
    return 0;
}
4

3 に答える 3

1

pMyClassにメモリの始まりがあり、ストライドはsizeof(MyClass)です。したがって、あなたがする必要があるのは、例えば:

MyClass* pMyClass2 = ::new((MyClass*)pMyClass + 1)MyClass();
于 2012-03-26T10:59:07.507 に答える
0

連続する10個のメモリチャンクを反復するループ内で、配置をnewと呼ぶ必要があります。

int main()
{
    void* pMyClass = ::operator new(sizeof(MyClass)*10);
    MyClass* pMyClass1 = reinterpret_cast<MyClass*>(pMyClass);
    for (size_t i=0; i<10; ++i) {
        ::new(pMyClass1++)MyClass();
    }
    // ... 
}
于 2012-03-26T10:53:28.183 に答える
0

試す:

MyClass* pMyClass1 = :: new(pMyClass)MyClass[10];   
于 2012-03-26T10:54:48.883 に答える