What is the correct Address of a C++ function or function pointer

后端 未结 0 649
無奈伤痛
無奈伤痛 2021-02-08 19:56
typedef int (*fooPtr)(int);

int foo(int a) {
    return a + 1;
}


int main(){

    void* funcPtr1 = reinterpret_cast

        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题