我有这个函数,它应该为给定的 char* 设置某种时间格式:
static void timeStamp(char* time)
{
time(&strTime);<---ERROR
curTime = std::localtime(&strTime);
strftime(time, 8, "%H:%M::", curTime);
}
strTime 和 curTime 声明如下:
tm* curTime;
time_t strTime;
但由于某种原因,我得到:
called object type 'char*' is not a function or function pointer
在标记的地方。
知道为什么吗?
顺便说一句,我正在使用 xCode。