0
我是新來的C/C++,我一直在使用python,而我試圖獲取當前時間並對其進行分區,但是我遇到了問題使用ctime
獲取當前時間。''''之前預期的初級表達式令牌:C++
float t2lmst(){
QString t = ctime(time_t); //line with error
QString year =t.substr(20,4);
QString monthn =t.substr(4,3);
QString day =t.substr(8,2);
QString hour =t.substr(11,2);
QString minute =t.substr(14,2);
QString second =t.substr(17,2);
}
錯誤正是:
error: expected primary-expression before ')' token