博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
类和对象应用例题
阅读量:6112 次
发布时间:2019-06-21

本文共 1082 字,大约阅读时间需要 3 分钟。

用类来实现时间输入输出

#include 
using namespace std;class Time{ public: int hour; int minute; int sec;};void set_time(Time&t){ cin>>t.hour; cin>>t.minute; cin>>t.sec;}void show_time(Time&t){ cout<
<<":"<
<<":"<
<

实参声明

#include 
using namespace std;class Time{ public: int hour; int minute; int sec;};void set_time(Time&t,int hour,int minute,int sec){ t.hour=hour; t.minute=minute; t.sec=sec;}void show_time(Time&t){ cout<
<<":"<
<<":"<
<

标准类的方法

#include 
using namespace std;class Time{ private: int hour; int minute; int sec; public: void set_time(){ cin>>hour; cin>>minute;m cin>>sec; } void show_time(){ cout<
<<":"<
<<":"<
<

 

转载于:https://www.cnblogs.com/qingyundian/p/8084435.html

你可能感兴趣的文章
Machine Learning Techniques -6-Support Vector Regression
查看>>
会计基础_001
查看>>
Cordova 开发环境搭建及创建第一个app
查看>>
ajax请求拿到多条数据拼接显示在页面中
查看>>
小程序: 查看正在写的页面
查看>>
dedecms生成文档数据库崩溃 mysql daemon failed to start
查看>>
Linux的50个基本命令
查看>>
Objective-C中创建单例方法的步骤
查看>>
[转]无法安装MVC3,一直卡在vs10-kb2483190
查看>>
Codeforces 520B:Two Buttons(思维,好题)
查看>>
web框架-(二)Django基础
查看>>
Jenkins持续集成环境部署
查看>>
emoji等表情符号存mysql的方法
查看>>
Excel到R中的日期转换
查看>>
检查磁盘利用率并且定期发送告警邮件
查看>>
MWeb 1.4 新功能介绍二:静态博客功能增强
查看>>
linux文本模式和文本替换功能
查看>>
Windows SFTP 的安装
查看>>
摄像机与绕任意轴旋转
查看>>
rsync 服务器配置过程
查看>>