Akhir-akhir ini saya menulis fungsi template untuk menyelesaikan beberapa pengulangan kode. Ini terlihat seperti ini:
template<class T, class R, class... Args>
R call_or_throw(const std::weak_ptr<T>& ptr, const std::string& error, R (T::*fun)(Args...), Args... args) {
if (auto sp = ptr.lock())
{
return std::invoke(fun, *sp, args...);
}
else
{
throw std::runtime_error(error.c_str());
}
}
int main() {
auto a = std::make_shared<A>();
call_or_throw(std::weak_ptr<A>(a), "err", &A::foo, 1);
}
Kode ini berfungsi dengan sangat baik untuk class A
yang terlihat seperti ini:
class A {
public:
void foo(int x) {
}
};
Tetapi gagal mengkompilasi untuk yang seperti ini:
class A {
public:
void foo(const int& x) {
}
};
Mengapa demikian (maksud saya mengapa gagal menyimpulkan jenis) dan bagaimana (jika memungkinkan) saya dapat membuat kode ini berfungsi dengan referensi? Contoh langsung
Args&&...
danstd::forward
?