第7周使用靜態成員

 
/* (程序頭部註釋開始)
* 程序的版權和版本聲明部分
* Copyright (c) 2011, 煙臺大學計算機學院學生 
* All rights reserved.
* 文件名稱:                              
* 作    者:         苗影                     
* 完成日期:   2012      年    4   月     4   日
* 版 本 號:          
* 對任務及求解方法的描述部分
* 輸入描述: 
* 問題描述: 
* 程序輸出: 
* 程序頭部的註釋結束
*/
3. 完成任務的時間包括週一
#include<iostream>
using namespace std;
class Time
{
public:
	Time(int ,int ,int  );
	void show_time( ); //根據is_24和from0,輸出適合形式-20:23:5/8:23:5 pm/08:23:05 pm
	void add_seconds(int); //增加n秒鐘
	void add_minutes(int); //增加n分鐘  
	void add_hours(int); //增加n小時  
	static void change24();  //改變靜態成員is_24,在12和24時制之間轉換
	static void changefrom0();   //改變靜態成員from0,切換是否前導0
private:
	static bool is_24; //爲true時,24小時制,如20:23:5;爲flase,12小時制,顯示爲8:23:5 pm 
	static bool from0; //爲true時,前導0,8:23:5顯示爲08:23:05
	int hour;
	int minute;
	int sec;
};
//下面寫出靜態成員的初始化及各成員函數的定義
bool Time :: from0=false;
bool Time :: is_24=true;
void Time :: show_time()
{
	if(!from0&&is_24)
	{
		cout<<hour<<":"<<minute<<" :"<<sec<<endl;
	}
	if(from0&&is_24)
	{
		cout<<hour<<":"<<minute<<":"<<sec<<endl;
	}
	if(!is_24)
	{
		if(hour>12)
		{
			cout<<"0"<<hour-12<<":"<<minute<<":"<<"0"<<sec<<"pm"<<endl;
		}
		else
		{
			cout<<"0"<<hour<<":"<<minute<<":"<<sec<<"am"<<endl;
		}
	}
}
 Time::Time(int h,int m,int s)
{
	hour = h;
	minute=m;
	sec=s;
}
void Time::add_minutes(int n)
{
  minute+=n;
  if(minute>59)
  {
	  add_hours(minute/60);
	  minute%=60;
  }
}
void Time::add_seconds(int n)
{
	sec+=n;
	if(sec>59)
	{
		add_minutes(sec/60);
			sec%=60;
	}
}
void Time::add_hours(int n)
{
	hour=hour+n;
	if(hour>23)
		hour%=24;
}
void Time::change24()
{
	is_24=false;
}
void Time::changefrom0()

{
	from0=true;
}


int main( )   
{
	Time t1(23,14,25),t2(8,45,6); 
	cout<<"24時制, 不前導0:"<<endl;
	cout<<" t1是:";
	t1.show_time();
	cout<<"t2是:";
	t2.show_time();
	t1.add_hours(10);
	t2.add_hours(10);
	Time::changefrom0(); //注意此處調用靜態成員
	cout<<"10小時後, 切換是否前導0:"<<endl;
	cout<<   "t1是:";
	t1.show_time();
	cout<<   "t2是:";
	t2.show_time();
	t1.change24();
	cout<<"換一種制式:"<<endl;
	cout<<"   t1是:";
	t1.show_time();
	cout<<"    t2是:";
	t2.show_time();
	return 0;
}


經驗積累;  我一直以爲true或者false必須有一定的含義,原來是這樣用的。

                

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章