is there any possible to get the infinty time value in milliseconds? that is i set that time delay value must be shows the window when the user close the application? any idea?

link|improve this question

Hmmm, infinity.... – zaf Jun 4 '10 at 10:02
feedback

2 Answers

up vote 3 down vote accepted

Your question is quite vague, but I'll try to answer it anyway.

Milliseconds are usually represented using values of type long. There is no way to let a long value represent infinity. However, the Long.MAX_VALUE equals 9223372036854775807, which, if interpreted as milliseconds, corresponds to 292471208 yeas. Perhaps that's long enough for you? :-)

link|improve this answer
1  
What, you don't believe in infinite uptime? Shame on you! :-). Plus you must subtract 40 years, that has passed already from 1970. This makes it so less infinity. – Alexander Pogrebnyak Jun 4 '10 at 11:18
feedback

I'm not sure I completely understand the question, but isn't Long.MAX_VALUE good enough? It is equivalent to 292471208 years...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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