发布时间:2012-12-19 23:14:56
#include <iostream> #ifdef WIN32 #include <windows.h> #else #include <sys/time.h> #endif using std::cout; using std::endl; long GetMillisecond() { long lMillisecond = 0L; #ifdef WIN32 SYSTEMTIME  ......【阅读全文】
发布时间:2012-12-01 15:04:03
按有效位输出是 setprecision,按小数位数输出也是setprecision,但到底是谁取决于fixed。 cout << 非fixed << s......【阅读全文】
发布时间:2012-12-01 15:01:22
static成员函数没有this形参,他可以直接访问所属类的static成员,但不能直接使用非static成员 static成员函数不能被声明成const类型......【阅读全文】