Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

To find the execution time of my code as given below, I have written a Timer class.

Timer::StartTimer();
DoOperation();
cout<<"Time elapsed: "<<Timer::GetTime();

I get error that startTime and endTime are undefined. I couldn't quite get the problem. Can you please help.

File:Timer.h

#include <sys/time.h>

class Timer
{
    static timeval startTime, endTime;

public:
     static void StartTimer();
     static long int GetTime();
};

File: Timer.cc

#include "Timer.h"

void Timer::StartTimer()
{
    gettimeofday(&startTime, NULL);
}

long int Timer::GetTime()
{
    long int seconds, useconds, mtime;
    gettimeofday(&endTime, NULL);
    seconds  = endTime.tv_sec  - startTime.tv_sec;
    useconds = endTime.tv_usec - startTime.tv_usec;
    mtime = ((seconds) * 1000 + useconds/1000.0) + 0.5;
    return(mtime);
}
share|improve this question
1  
Do you include Timer.h in your program? Do you link to the implementation of Timer? – wich Jan 28 '11 at 11:54
yes, I do include and link. – Nemo Jan 28 '11 at 11:56
Is there any problem with the usage of static? – Nemo Jan 28 '11 at 11:56
Which compiler ? – DumbCoder Jan 28 '11 at 11:57
1  
Anyway why are you using static members? Unless you've some weird needs I think it would be better to have normal members instead of static ones... – peoro Jan 28 '11 at 11:59
show 1 more comment

3 Answers

In timer.cc you need:

timeval Timer::startTime;
timeval Timer::endTime;

See this FAQ

As someone else has pointed out though making this all static is "unusual" design and might lead to problems if you tried to use this code in multiple places at once. Probably you want to make none of it static and have an instance when you use it.

share|improve this answer
thanks a lot. that fixed it. – Nemo Jan 28 '11 at 11:59

You need to instantiate static member variables.

Add this to your Timer.cc:

timeval Timer::startTime;
timeval Timer::endTime;
share|improve this answer

I think you would be better of using a namespace instead of class if everything is static

You need to define Timer::endTime and Timer::startTime

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.