gpt4 book ai didi

c++ - 向 map 添加类

转载 作者:行者123 更新时间:2023-11-28 00:26:07 24 4
gpt4 key购买 nike

我正在尝试将类对象添加到 map ,这就是我所拥有的:

#include<vector>
#include<map>
#include<stdio.h>
#include<string>
#include<iostream>

using namespace std;

class Student{
int PID;
string name;
int academicYear;
public:
Student(int, string, int);
};

Student::Student (int P, string n, int a) {
PID = P;
name = n;
academicYear = a;
}

void createStudent(map<string, Student>);

int main(int argc, char** argv){

map <string, Student> studentList;

createStudent(studentList);
}


void createStudent(map<string, Student> studentList){

int PID;
string name;
int academicYear;

cout << "Add new student-\nName: ";
getline(cin, name);
cout << "PID: ";
cin >> PID;
cout << "Academic year: ";
cin >> academicYear;

Student newstud (PID, name, academicYear);

studentList[name] = newstud; //this line causes the error:
//no matching function for call to
//'Student::Student()'
}

我不明白为什么要在那里调用构造函数,我认为 newstud 已经从上一行构建了。谁能解释一下当我尝试将 newstud 添加到 map 时发生了什么?

最佳答案

  • 第一个问题

std::map::operator[]如果新元素不存在,将使用默认构造函数将新元素插入到容器中,在您的情况下,默认构造函数不存在,即使您提供一个也可能没有意义。

所以使用std::map::insert对于这种情况

  • 问题 2

即使您使用 studentList.insert(std::make_pair(name, newstud)); 成功插入,它也不会反射(reflect)原始 map studentList 中的更改 main ( ) 除非你使用引用类型,在 createStudent

的函数定义和声明中

所以用

void createStudent(map<string, Student>& );

关于c++ - 向 map 添加类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24972726/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com