1

に次のコードがありsourceFile.cppます。functionA()が最初に呼び出され、key1、key2、および key3 のエントリが挿入されます。次にfunctionB()、3 つのキーのベクトルを使用するために呼び出されます。終了後にすべてのメモリを解放したいfunctionC()。3 つのキーのマップにエントリを配置する 3 つの方法のうち、正しい/優れているのはどれですか?

Class ClassA { ... }

ClassA *key1 = new ClassA();
ClassA *key2 = new ClassA();
ClassA *key3 = new ClassA();

static map<ClassA*, vector<pair<char*, char*> > > stringMap;

// which way of adding an entry into StringMap is better? key1, key2 or key3
void functionA() {
    // insert entries into stringMap for key1 and key2
    vector<pair<char*, char*> > *v1 = new vector<pair<char*, char*> >();
    stringMap[key1] = *v1;
    stringMap[key2]; // map will insert one vector<pair<char*, char*> > object
    // is this vector object on heap or stack?

    vector<pair<char*, char*> > v3;
    stringMap[key3] = v3; // 
}

void functionB() {
    // get entries for key1, key2 and key3
    // use vector.push_back() to populate vectors
}

void functionC() {
    // so when program exits this function, all memory is released
    vector<pair<char*, char*> > *v1 = stringMap[key1];
    v1->clear(); // or loop and v1->erase() 
    stringMap.erase(key1);
    delete v1;

    vector<pair<char*, char*> > v2 = stringMap[key2];
    v2.clear();
    stringMap.erase(key2);
    // v2 was inserted by map, does it need to delete v2 ??? 

    // what about the vector for key3?
}
4

0 に答える 0