很基本!很简单的问题~关于类   如何在MAIN函数中调用 类中的函数

我还是菜鸟刚学类,这里面我构造了3个成员函数(第二个函数内容被我省略了)但是每次按运行,他总说:MAIN中:implicitdeclarationoffunction`i... 我还是菜鸟 刚学类,这里面我构造了3个成员函数(第二个函数内容被我省略了)
但是每次按运行,他总说:
MAIN中: implicit declaration of function `int settime(...)'
我不知道如何将类中的函数调用到MAIN函数中。..好郁闷啊 求好心人~~
#include "stdio.h"
#include<iostream>
using namespace std;
class Cdate
{
private:
int m_year,m_month,m_day;
public :
Cdate(int y,int m,int d)
{
m_year =y;
m_month=m;
m_day =d;
}

void settime ();
int getadd () ;
void showtime();
};
void Cdate::settime()
{
cin>>m_year>>m_month>>m_day;
}
int Cdate::getadd()
{
}

void Cdate::showtime()
{
cout<<m_year<<m_month<<m_day;
}

int main(void)
{

cout<<"请输入年、月、日:";
settime();
getadd();
showtime();
}
C++的
展开
 我来答
lyqf365
推荐于2017-12-16 · TA获得超过1185个赞
知道小有建树答主
回答量:1291
采纳率:100%
帮助的人:790万
展开全部
#include "stdio.h"
#include<iostream>
using namespace std;
class Cdate
{
private:
int m_year,m_month,m_day;
public :
Cdate(int y,int m,int d)
{
m_year =y;
m_month=m;
m_day =d;
}

void settime ();
int getadd () ;
void showtime();
};
void Cdate::settime()
{
std::cin>>m_year>>m_month>>m_day;
}
int Cdate::getadd()
{
}

void Cdate::showtime()
{
std::cout<<m_year<<m_month<<m_day;
}

int main(void)
{
Cdate date(0,0,0);//要有对象才能调类里的非静态函数
std::cout<<"请输入年、月、日:";
date.settime();
date.getadd();
date.showtime();
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式