文字列を内部関数に関連付けるように設計されたスーパークラスに関数があります。
class Base
{
typedef std::function<void(double)> double_v;
bool registerInput(std::string const& key, double_v const& input) {
functions[key] = input;
}
void setInput(std::string key, double value) {
auto fit = functions.find(key);
if (fit == functions.end()) return;
fit->second(value);
}
std::map<std::string, double_v> functions;
}
関数を登録できるサブクラスは、文字列と値でそれらを呼び出すことができるという考えです:
SubBase::SubBase() : Base(){
Base::registerInput(
"Height",
static_cast<void (*)(double)>(&SubBase::setHeight)
);
}
void SubBase::setHeight(double h) {
....
}
次に、次のように呼び出すことができます。
subBaseInstance.setInput("Height", 2.0);
ただし、コンパイルすると、次のエラーが発生します。
In constructor ‘SubBase::SubBase()’
error: invalid static_cast from type ‘<unresolved overloaded function type>’ to type ‘void (*)(double)’
私は何が欠けていますか?