标签:
string getCompileDateTime() { static string result = ""; if(result == "") { result = string(__DATE__) + " " + string(__TIME__); } return result; }
时间标签
原文地址:http://www.cnblogs.com/kid-coder/p/4181299.html