static3.c
来自「this is a gcc file, you can download it 」· C语言 代码 · 共 17 行
C
17 行
// On targets that don't support weak symbols, we require an explicit// instantiation of arr.// excess errors test - XFAIL *-*-aout *-*-coff *-*-hpux* *-*-hmstemplate<class T>struct A { static T arr[5];};template <class T>T A<T>::arr[5] = { 0, 1, 2, 3, 4 };int main (){ return A<int>::arr[0];}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?