?? array3.c
字號(hào):
// PR c++/6331// Bug: we were generating a badly cv-qualified ARRAY_TYPE in the// synthesized copy constructor for A, which then became the canonical// version, confusing later uses.struct A { virtual ~A(); const float* f(); float fa[3];};struct B { B(const A& ai) : a (ai) {} A a;};void g (const float pos[3]);extern A& a;void h(){ g (a.f());}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -