vote up 0 vote down star

When I use this

#include<time.h>
//...
int n = time(0);
//...

I get a warning about converting time to int. Is there a way to remove this warning?

flag

4 Answers

vote up 1 vote down check

Time returns time_t and not integer. Use that type preferably because it may be larger than int.

If you really need int, then typecast it explicitly, for example:

int n = (int)time(0);
link|flag
3  
If your program is gonna work until 2038 you got a problem ;) – AraK Sep 27 at 2:47
2  
Though technically the correct answer to the question. This is not a good idea. Better to convert your code to use time_t – Martin York Sep 27 at 3:18
This treats the symptoms and not the illness. – Michael Aaron Safyan Sep 27 at 4:51
3  
Hey, just read the answer. I said "use that type preferably". – Viliam Sep 27 at 5:33
1  
As well as the size issue, time_t is permitted by POSIX to be a floating-point type, not any size of integer. – Steve Jessop Sep 27 at 16:20
show 1 more comment
vote up 18 vote down

Yes, change n to be a time_t. If you look at the signature in time.h on most / all systems, you'll see that that's what it returns.

#include<time.h>
//...
time_t n = time(0);
//...

Note that Arak is right: using a 32 bit int is a problem, at a minimum, due to the 2038 bug. However, you should consider that any sort of arithmetic on an integer n (rather than a time_t) only increases the probability that your code will trip over that bug early.

PS: In case I didn't make it clear in the original answer, the best response to a compiler warning is almost always to address the situation that you're being warned about. For example, forcing higher precision data into a lower precision variable loses information - the compiler is trying to warn you that you might have just created a landmine bug that someone won't trip over until much later.

link|flag
I think this is the correct answer :) – AraK Sep 27 at 2:49
@AraK, saw your comment above and you made a good point about 2038. – Bob Cross Sep 27 at 2:56
vote up 1 vote down

I think you are using Visual C++. The return type of time(0) is 64bit int even if you are programming for 32bit platform unlike g++. To remove the warning, just assign time(0) to 64bit variable.

link|flag
vote up 1 vote down

You probably want to use a type of time_t instead of an int.

See the example at http://en.wikipedia.org/wiki/Time%5Ft.

link|flag

Your Answer

Get an OpenID
or

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