- 论坛徽章:
- 0
|
本人在C++做一个模拟电梯的程序时,在做了CLock模块后调试时,又遭遇内存不能读的头痛问题。本人把代码说明如下:
在CLock.h文件中代码如下:
#ifndef CLOCK_H_INCLUDED_BF66D153
#define CLOCK_H_INCLUDED_BF66D153
#include <time.h>;
#include <sys/timeb.h>;
class Clock
{
public:
Clock();
~Clock();
void showToday();
void showZoneDifference();
void showTimeZoneName();
void showPlusMilliseconds();
void show12HourTime();
void showUniversalTime();
void showUNIXTimeAndDate();
void showSystemDate();
void showSystemTime();
void showSecond();
private:
char tmpbuf[128],ampm[2];
time_t ltime; //local time
struct _timeb tstruct;
struct tm *today,*gmt;
};
#endif /* CLOCK_H_INCLUDED_BF66D153 */
在Clock.cpp中代码如下:
#include "Clock.h"
#include "sys/timeb.h"
#include "sys/types.h"
#include "time.h"
#include "string.h"
#include "stdlib.h"
#include "iostream.h"
void Clock::showSecond()
{
}
void Clock::showSystemTime()
{
_strtime( tmpbuf );
cout << "OS Time: " << tmpbuf << '\n';
}
void Clock::showSystemDate()
{
_strdate(tmpbuf);
cout << "OS Date: " << tmpbuf << '\n';
}
void Clock::showUNIXTimeAndDate()
{
time( <ime );
cout << "Time in seconds since UTC 1/1/70:\t" << ltime << '\n'
<< "UNIX time and date:\t\t\t" << ctime( <ime ) << '\n';
}
void Clock::showUniversalTime()
{
gmt = gmtime( <ime );
cout << "Coordinated universal time: \t\t" << asctime(gmt) <<endl;
}
void Clock::show12HourTime()
{
today = localtime( <ime );
// if ( today == 0 )
// exit(1);
if ( today->;tm_hour >; 12 )
{
strcpy(ampm," M" ;
today->;tm_hour -= 12;
}
if ( today->;tm_hour == 0 )
today->;tm_hour = 12;
cout << "12-hour time:\t\t\t\t" << asctime( today ) + 11
<< ampm << endl;
}
void Clock::showPlusMilliseconds()
{
_ftime( &tstruct ); //additional time information
cout << " lus milliseconds:\t\t\t" << tstruct.millitm << endl;
}
void Clock::showTimeZoneName()
{
cout <<"Daylight savings:\t\t\t" << (tstruct.dstflag? "YES":"NO"
<< endl;
}
void Clock::showZoneDifference()
{
cout << "Zone differnece in seconds from UTC:\t" << tstruct.timezone
<< "Time zone name:\t\t\t\t" << _tzname[0] << endl;
}
void Clock::showToday()
{
today = localtime( <ime );
strftime( tmpbuf, 128,
"Today is %A, day %d of %B in the year %Y.\n", today );
cout << tmpbuf << endl;
}
Clock::Clock()
{
strcpy(ampm,"AM" ;
strcpy(tmpbuf,"" ;
today = NULL;
gmt = NULL;
_tzset(); //set time zone from TZ environment variable.
}
Clock::~Clock()
{
}
在驱动程序中代码如下:
int main()
{
Clock clock;
clock.show12HourTime();
return 0;
}
问题:编译和连接通过后,就是运行时显示内存不读。错误代码停在箭头处
void Clock::show12HourTime()
{
today = localtime( <ime );
// if ( today == 0 )
// exit(1);
-->; if ( today->;tm_hour >; 12 )
{
strcpy(ampm," M" ;
today->;tm_hour -= 12;
}
if ( today->;tm_hour == 0 )
today->;tm_hour = 12;
cout << "12-hour time:\t\t\t\t" << asctime( today ) + 11
<< ampm << endl;
}
肯请哪位高手不吝指教? 多谢!!! |
|