質問

For homework, I am writing a program that deals with a lot of time_t objects. I thought about checking them for overflow, but then it occurred to me that if they overflowed we would all be in a might bit of trouble.

Is there a plan for this? What will happen when the time since epoch exceeds storage?

役に立ちましたか?

解決

LONG_MAX on a 64-bit machine is 2^63 - 1. Try this: go to http://google.com and enter 2^63 seconds in years. Look at the answer and decide whether you really need to worry about it.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top