Create time object

Source: Internet
Author: User

Create two time objects and execute two for loops. The display time is delayed!

Time class:

//:C09:Cpptime.h//A simple time class#ifndef CPPTIME_H#define CPPTIME_H#include<ctime>#include<cstring>class Time{std::time_t t;std::tm local;char asciiRep[27];unsigned char lflag ,aflag;void updateLocal() {if(!lflag) {local =*std::localtime (&t);lflag++;}}void updateAscii() {if(!aflag) {updateLocal();std::strcpy (asciiRep,std::asctime(&local));}}public:Time() {mark();}void mark() {lflag=aflag=0;std::time(&t);}const char * ascii(){updateAscii();return asciiRep;}int delta(Time *dt) const {return int (std::difftime(t,dt->t));}int daylightSavings(){updateLocal();return local.tm_isdst;}int dayOfyear(){updateLocal();return local.tm_yday ;}int dayOfweek(){updateLocal();return local.tm_wday;}int since1900(){updateLocal();return local.tm_year;}int month(){updateLocal();return local.tm_mon;}int dayOfMonth(){updateLocal();return  local.tm_mday;}int hour(){updateLocal();return local.tm_hour;}int minute(){updateLocal();return local.tm_min ;}int second(){updateLocal();return local.tm_sec ;}};#endif 

Test:

#include "Cpptime.h"#include<iostream>using namespace std;int main(){ Time start; for(int i=1;i<900000;i++) { for(int j=1;j<999;j++){}/* cout<<i <<" ";*//* if(i%10==0) cout<<endl;*/ } Time end; cout<<endl; cout<<"start= " <<start.ascii()<<endl; cout<<"end= " <<end.ascii ()<<endl; cout<<"delta= "<<end.delta (&start);}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.