13478.c

来自「this is a gcc file, you can download it 」· C语言 代码 · 共 37 行

C
37
字号
// 981203 bkoz// g++/13478// Build don't link:  class A {};class AData {};typedef void (A::* hand) (void);struct hand_table {  const int data1;  const hand data2;};class Agent : public A {public:  enum { first = 1, last };protected:  static const hand_table table_1[];  static const AData 	  table_2;private:  void foo (void);                  // ERROR - candidate};const hand_table Agent::table_1[] = {   {0,     &Agent::table_2},   {first, &Agent::foo},   {last,  &(hand)Agent::foo} // ERROR - no match}; // ERROR - cannot convert

⌨️ 快捷键说明

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