dtor3.c
来自「this is a gcc file, you can download it 」· C语言 代码 · 共 52 行
C
52 行
// Build don't link:struct S1{ ~S1(int); // ERROR - destructors may not have parameters};template <class T>struct S2{ ~S2(int); // ERROR - destructors may not have parameters};struct S3 { ~S3(double) {} // ERROR - destructors may not have parameters};template <class T>struct S4{ ~S4(double) {} // ERROR - destructors may not have parameters};struct S5{ ~S5(); };S5::~S5(float) { // ERROR - destructors may not have parameters}template <class T>struct S6{ ~S6();};template <class T>S6<T>::~S6(float){ // ERROR - destructors may not have parameters}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?