想知道如何在不使用decltype的情况下将指针作为比较函数作为键类型传递给函数。
使用decltype
std::multiset<Sales_data, decltype(compareIsbn)*> bookstore(&compareIsbn);
不使用decltype
std::multiset<Sales_data, (bool (*pf)(const Sales_data &, const Sales_data &)> bookstore(&compareIsbn);
虽然弹出错误。
Testing.cpp:15:36: error: use of undeclared identifier 'pf'
std::multiset<Sales_data, (bool (*pf)(const Sales_data &, const Sales_data &)> ...
^
Testing.cpp:15:40: error: expected expression
std::multiset<Sales_data, (bool (*pf)(const Sales_data &, const Sales_data &)> ...
^
Testing.cpp:15:60: error: expected expression
std::multiset<Sales_data, (bool (*pf)(const Sales_data &, const Sales_data &)> ...
^
Testing.cpp:15:81: error: use of undeclared identifier 'bookstore'
std::multiset<Sales_data, (bool (*pf)(const Sales_data &, const Sales_data &)> bookstor...
^
Testing.cpp:15:104: warning: declaration does not declare anything [-Wmissing-declarations]
...(bool (*pf)(const Sales_data &, const Sales_data &)> bookstore(&compareIsbn);
^
1 warning and 4 errors generated.
任何帮助将不胜感激,谢谢!
答案 0 :(得分:2)
您不能命名参数 - 您只需要类型:
std::multiset<Sales_data,
bool (*)(const Sales_data &, const Sales_data &)
> bookstore(&compareIsbn);
你所拥有的是声明一个名为 pf
的类型的函数指针。
您也不需要&
,只需compareIsbn
即可。