📄 lookup4.c
字号:
// Test for proper handling of references to overloaded member functions.struct A { static void f (int) { } void f ();};void (*p)(int) = &A::f;void A::f (){ p = f;}int main(){ A a; p = &a.f; (a.f)(); (a.f)(42);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -