作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的程序最初设置为通过函数传递数组。从那以后,我将其更改为 unordered_map。我如何通过函数传递 unordered_map 而不是像这样:
int function(int array[])
最佳答案
你为什么迷茫?只需替换 int
用类似 unordered_map<int, int>
的东西.
int foo(unordered_map<int, int> x)
如果您不需要修改它,您将希望通过 const 引用传递它。
int foo(const unordered_map<int, int> &x)
如果要修改用于调用函数的原始对象,请不要使用 const。
关于c++ - 如何在 C++ 中将 unordered_map 作为函数参数传递?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48970242/
我是一名优秀的程序员,十分优秀!