码迷,mamicode.com
首页 > 编程语言 > 详细

第一个C++例子

时间:2014-12-10 15:59:44      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   os   sp   on   

bubuko.com,布布扣
 1 #include <iostream>
 2 using namespace std;
 3 
 4 class Time
 5 {
 6 private:
 7     int hour;
 8     int minute;
 9     int second;
10 public:
11     //Time() //无参够创函数
12     //{
13     //    hour = 0; minute = 0; second = 0;
14     //}
15     //Time(int h, int m, int s) //带参构造函数
16     //{
17     //    hour = h; minute = m; second = s;
18     //}
19     Time(int h = 0, int m = 0, int s = 0) : hour(h), minute(m), second(s){} //带参数初始化表的构造函数
20     void Set(int h, int m, int s);
21     void Show();
22 };
23 
24 void Time::Set(int h, int m, int s)
25 {
26     hour = h; minute = m; second = s;
27 }
28 void Time::Show()
29 {
30     cout << hour << ":" << minute << ":" << second << endl;
31 }
32 
33 int main()
34 {
35     Time t1;
36     t1.Show();
37     t1.Set(6, 18, 16);
38     t1.Show();
39 
40     Time t2(12, 11, 10);
41     t2.Show();
42 
43     return 0;
44 }
View Code

 

第一个C++例子

标签:style   blog   http   io   ar   color   os   sp   on   

原文地址:http://www.cnblogs.com/mrethan/p/4155573.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!