为什么即使在调用参数化构造函数时也会调用默认构造函数?

atl*_*een 2 c++ class stdmap default-constructor parameterized-constructor

我有一个类,我正在使用参数化构造函数创建它的一个对象。在此期间,参数化构造函数和默认构造函数都已被调用。

这是我的片段:

class student {
    string name;
    int age;
public:
    student() {
        cout << "Calling the default constructor\n";
    }
    student(string name1, int age1) {
        cout << "Calling the parameterized const\n";
        name = name1;
        age = age1;
    }
    void print() {
        cout << " name : " << name << " age : " << age << endl;
    }
};

int main()
{
    map<int, student> students;
    students[0] = student("bob", 25);
    students[1] = student("raven", 30);

    for (map<int, student>::iterator it = students.begin(); it != students.end(); it++) {
        cout << "The key is : " << it->first ;
        it->second.print();
    }
    return 0;
}
Run Code Online (Sandbox Code Playgroud)

当我执行这个片段时,我的输出是:

调用参数化的const
调用默认的构造函数
调用参数化的const
调用默认的构造函数
关键是:0 姓名:bob 年龄:25
关键是:1 姓名:raven 年龄:30

所以,我想明白,如果我调用的是参数化构造函数,为什么在参数化构造函数之后调用了默认构造函数?

son*_*yao 6

因为如果指定的键不存在,std::map::operator[]student首先插入一个默认构造的。然后插入的student从临时studentlike分配student("bob", 25)

返回对映射到与 key 等效的键的值的引用,如果这样的键不存在,则执行插入。

你可以insert改用。

students.insert({0, student("bob", 25)});
students.insert({1, student("raven", 30)});
Run Code Online (Sandbox Code Playgroud)