在这里,当从 cpp 文件中包含 ctime 或 time.h 时,我从 vim 收到了一个奇怪的错误。我刚刚复制了 a.cpp,其中包含以下代码:
/* function:
* date:
* author:
*/
/* localtime example */
#include <ctime>
#include<iostream>
int main (int argc, char const* argv[]) {
time_t rawtime;
struct tm * timeinfo;
time ( &rawtime );
timeinfo = localtime ( &rawtime );
printf("current time is :%s",astime(timeinfo));
return 0;
}
然后我在 vim 中打开它们,区别如下:
如果您看到 403 Forbidden,只需将光标放在 url 输入栏中,按 enter。
在 vim 中打开 /home/hippo/cpps/cppworks/a.cpp。(如果看到 403 Forbidden,只需将光标放在 url 输入栏中,按 enter。)
http://photo21.hexun.com/p/2012/0927/485687/b_EA6D87DED1A027A1A21D8B31D0A5BB13.jpg
在vim中打开/home/hippo/a.cpp出来就好了
http://photo21.hexun.com/p/2012/0927/485687/b_982DF55D2242797854727CA51824861E.jpg
所以,我只是无法从我的 ubuntu 系统中找出问题所在。
在我的笔记本电脑上编辑带有其他标题的其他文件时,我从未遇到过这样奇怪的问题。
我的英语不好:<,但任何建议都值得赞赏。