我目前正在探索C++ 17的補充。在playing around withstd::variant之後,也想用std::optional,同樣的例子。目前看到的是,編譯失敗,因爲以下錯誤: error: no viable conversion from returned value of type
'(lambda at ./html_parser.hpp:53:9)' to fun
我需要將一個參數綁定到類成員函數。 事情是這樣的: #include <functional>
#include <iostream>
struct test
{
void func(int a, int b)
{
std::cout << a << " " << b << std::endl;
}
};
int main(int argc,