鱼C论坛

 找回密码
 立即注册
查看: 2229|回复: 1

用带参数的构造函数给类中的对象赋初值

[复制链接]
发表于 2019-5-25 18:46:59 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
#include <iostream>
using namespace std;
class Time
{
public:
        Time(int, int, int);
        void set_time();
        void show_time();
public:
        int houre;
        int minute;
        int sec;
};
Time::Time(int x,int y,int z)
{
        houre = x;
        minute = y;
        sec = z;
}
void Time::set_time()
{
        cin >> houre;
        cin >> minute;
        cin >> sec;
}
void Time::show_time()
{
        cout << houre << ":" << minute << ":" << sec << endl;
};
int main()
{
        Time t1(120,120,20);
        t1.set_time();
        t1.show_time();
        Time t2(10,10,10);
        t2.show_time();
        return 0;
}
为什么t1.set_time();输入的数据和t1.show_time();输出的数据不一样
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2019-5-25 18:53:59 | 显示全部楼层
本帖最后由 IChoose 于 2019-5-25 18:58 编辑

一致的呀
你是想输出120,120,20吗,
1.png
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-10-3 19:23

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表