指向静态成员函数的指针"invalid"为 G++ 的模板参数

pointer to static member function is "invalid" as a template argument for g++

本文关键字:G++ 参数 invalid 函数 指针 静态成员      更新时间:2023-10-16

这是我的一些实际代码,用于向Lua公开C++类,例如:

#include <lua5.1/lua.hpp>
#include <tuple>
//in actual code, lots of specializations of these C++<=>Lua's stack helper functions. Here it's just a sample.
template<typename T> T to(lua_State*, int);
template<> int to(lua_State* l, int i){
    return lua_tointeger(l, i);
}
template<typename T> void push(lua_State*, T);
template<> void push(lua_State* l, int val){
    lua_pushinteger(l, val);
}
//in actual code, placed in a header
template<typename T, T> class function_proxy{
    static_assert(sizeof(T)!=sizeof(T), "Error: function_proxy works with functions (duh)");
};
template<typename Return, typename... Args, Return(*func)(Args...)> class function_proxy<Return(*)(Args...), func>{
    static Return call(lua_State* l, Args... args){
        return func(args...);
    }
    template<typename... retrieved> static Return call(lua_State* l, retrieved... read){
        return call(l, read..., to<typename std::tuple_element<sizeof...(read), std::tuple<Args...> >::type >(l, 1+sizeof...(read)));
    }
public:
    static int wrapper(lua_State* l){
        push(l, call(l));
        return 1;
    }
};
//in actual code, inner class of a template class in another header
template<typename CT, CT> class member_helper{
    static_assert(sizeof(CT)!=sizeof(CT), "Error: member_helper works with members of T (duh)");
};
//Just one of the actual partial specializations, to combine constness and the return of void or non-void
template<typename Class, typename Return, typename... Args, Return(Class::*fun)(Args...)> struct member_helper<Return(Class::*)(Args...), fun>{
    static Return as_free(Class& obj, Args... args){
        return (obj.*fun)(args...);
    }
    static int worker(lua_State* l, Class& obj, bool is_const, bool write){
        if(write) throw "Cannot write a member function.";
        //ERROR HERE: template argument 2 is invalid. Not very helpful message.
        lua_pushcclosure(l, function_proxy<decltype(&as_free), &as_free>::wrapper, 0);
        return 1;
    }
};
struct Test{
    int test(int arg){ return arg*3; }
};
int test_as_free(int arg){ return arg*3; }
int main(){
    lua_State* l=luaL_newstate();
    Test t;
    //works fine
    lua_pushcclosure(l, function_proxy<decltype(&test_as_free), &test_as_free>::wrapper, 0);
    //does not work
    member_helper<decltype(&Test::test), &Test::test>::worker(l, t, false, false);
}

代码在获取指针function_proxy<decltype(&as_free), &as_free>::wrapper时失败,即使在main中也做了非常相似的事情。我认为获取自由函数的指针与静态成员函数之间没有任何区别。这是这个 g++ 错误的实例吗(请注意,我用 -std=c++0x 编译,似乎该错误已在 C++11 中修复)?

这是一个 g++ 错误,并且已被承认。

我还没有完全理解它,但是您确定希望类是decltype(&Test::test)并返回为&Test::test吗?对我来说,它看起来应该是:

member_helper<Test, int>::worker

但是,通过添加一个接一个类型的间接寻址来从工作线到非工作线呢?