问答详情
源自:4-3 单元巩固

请问voide和void有什么区别

Class  DATE { //用于表示亚洲日期的类

DATE (int  yy=0; int  mm=0; int dd=0 ; )

voide set_date ( intyy ,  int mm , ntdd );

void get_date(int &yy, int&mm, int&dd);

 void  printed ();

 protected:

 int year ,  month,day;

}

class E-DATE : public DATE {//用于表示欧洲日期的类,继承了用于表示亚洲日期的类

  void printed-de ( );}

Class  DATE { //用于表示亚洲日期的类

DATE (int  yy=0; int  mm=0; int dd=0 ; )

voide set_date ( intyy ,  int mm , ntdd );

void get_date(int &yy, int&mm, int&dd);

 void  printed ();

 protected:

 int year ,  month,day;

}

class E-DATE : public DATE {//用于表示欧洲日期的类,继承了用于表示亚洲日期的类

  void printed-de ( );}


提问者:慕的地7269005 2019-05-07 23:02

个回答

  • weixin_慕圣521356
    2019-05-08 20:35:50

    老弟,voide是其他语言的吧,c++好像只有void。至于voide,要么打错,要么记错了吧?