Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

CPP

Name: Anonymous 2011-11-27 10:04

Hi,

is it a good practice to write this #def in cpp?

#define print(X) std::cout<<X<<std::endl

so that it can be used as:

print("what " << "ever" << " I " << "want");

btw.. how do I insert sniplet of code here?

Name: Anonymous 2011-11-27 10:49

>>20
std::time only has millisecond resolution, nor is it guaranteed to be monotonic. You can't use it for serious timing.

If you're on a POSIX system, use clock_gettime with CLOCK_CLOCK_THREAD_CPUTIME_ID, which has accurate monotonic nanosecond resolution time for the calling thread, and doesn't take into account process/thread context switching.

http://linux.die.net/man/3/clock_gettime

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List