deduce2.c

来自「xml大全 可读写调用率很高 xml大全 可读写调用率很高」· C语言 代码 · 共 31 行

C
31
字号
template <typename T0> struct tuple {    typedef tuple<int> tail;};template <> struct tuple<int> {};template <typename L>struct length  {  static const int i = length<typename tuple<L>::tail>::i;};template<>struct length<tuple<int> > {    static const int i = 1;};template <int> struct M {};template <typename A>M<length<tuple<A> >::i > foo (A*);template <typename A>M<length<tuple<A> >::i> foo (const A*);const int i1 = 3;void bar() {  foo (&i1);}

⌨️ 快捷键说明

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