?? scope-operator1.c
字號:
/* PR c++/250 *//* { dg-do compile } */template <class T> void Bar(T *p){} template <class T> class Foo{public: Foo(T *p) { Bar(p); } // The global scope operator wasn't respected in this case under gcc 3.0 void Bar(T *p) { ::Bar<T>(p); }};int main(){ double* d; Foo<double> f(d);}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -