page contents

map插入方式有哪几种?

轩辕小不懂 发布于 2022-01-07 14:33
阅读 746
收藏 0
分类:C/C++开发
  • c
  • c++
  • 2831
    Nen
    Nen
    - 程序员

    1) 用insert函数插入pair数据,

    mapStudent.insert(pair<int, string>(1, "student_one")); Copy to clipboardErrorCopied

    2) 用insert函数插入value_type数据
    mapStudent.insert(map<int, string>::value_type (1, "student_one"));Copy to clipboardErrorCopied
    3) 在insert函数中使用make_pair()函数
    mapStudent.insert(make_pair(1, "student_one")); Copy to clipboardErrorCopied
    4) 用数组方式插入数据
    mapStudent[1] = "student_one"; Copy to clipboard
    请先 登录 后评论