Bootstrap

时钟类的基本实现

/**
需求:实现设置时间的类
目的:熟悉类的基本概念
*/
#include <iostream>
#include <iomanip>//setw()
using namespace std;
class Time
{
	public:
	   void set_time() ;//声明
	   void show_time();
	private:
	   int hour;
	   int minute;
	   int sec;
};
int main()
{
	  Time t1;//建立对象t1
	  t1.set_time();//调用
	  t1.show_time();
	  Time t2;
	  t2.set_time();
	  t2.show_time();
	  return 0;
}
 
void Time::set_time()//标明作用域
{//设置
	  cin>>hour;
	  cin>>minute;
	  cin>>sec;
}
 
void Time::show_time()
{//显示
	cout<<"时"<<setw(5)<<"分"<<setw(5)<<"秒"<<endl;
	cout<<hour<<":"<<setw(4)<<minute<<":"<<setw(4)<<sec<<endl;
}
 

---------------------------2012.12-------------------------
;