explicit61.c

来自「gcc-you can use this code to learn somet」· C语言 代码 · 共 44 行

C
44
字号
extern "C" void abort ();template <class T> void f ();template <class T> void g (){  abort ();}template <> void g<char> (){  abort ();}template <class T> class C{  public:    void ff () { f<T> (0); }    void gg () { g<T> (1); }    template <class U> void f () { abort(); }    template <class U> void g () { abort(); }    template <class U> void f (int) {}    template <class U> void g (int) {}};template <class T> void f (){  abort ();}template <> void f<char> (){  abort ();}int main (){  C<int> c;  c.ff();  c.gg();  C<char> d;  d.ff();  d.gg();}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?