私は数時間懸命に努力していますが、これをうまく機能させることができませんでした。
テンプレート化されたクラスのスピンロックがあります:
template<typename T> class spinlock {
// ...
volatile T *shared_memory;
};
私はこのようなものを作成しようとしています:
// inside spinlock class
template<typename F, typename... Ars>
std::result_of(F(Args...))
exec(F fun, Args&&... args) {
// locks the memory and then executes fun(args...)
};
しかし、これを行うことができるように、多態的な関数を使用しようとしています:
spinlock<int> spin;
int a = spin.exec([]() {
return 10;
});
int b = spin.exec([](int x) {
return x;
}, 10); // argument here, passed as x
// If the signature matches the given arguments to exec() plus
// the shared variable, call it
int c = spin.exec([](volatile int &shared) {
return shared;
}); // no extra arguments, shared becomes the
// variable inside the spinlock class, I need to make
// a function call that matches this as well
// Same thing, matching the signature
int d = spin.exec([](volatile int &shared, int x) {
return shared + x;
}, 10); // extra argument, passed as x... should match too
// Here, there would be an error
int d = spin.exec([](volatile int &shared, int x) {
return shared + x;
}); // since no extra argument was given
基本的に、 orを引数としてexec
受け取る関数を作ろうとしています。F(Args...)
F(volatile T &, Args...)
しかし、私はタイプの自動検出を行うことができません。どうすればそれを達成できますか?