在 C++ 中
这是我现在正在编码的功能-
insertobjectnames(std::string clsname, std::string objname)
现在在上述函数中,我必须调用另一个函数,该函数将与上述 2 相同的参数作为输入,但作为变量的地址。
第二个函数的声明如下 -
int BitmapHashMap::Insertnew(const std::string& key, std::string& value)
如何使用第一个函数中的 clsname 和 objname 参数来调用上面的第二个函数。第二个函数(在其内部)从参数中提取“key”和“value”的值,然后使用它们。