在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输入栏中,按回车键。)
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系统中找出问题。
在我的笔记本电脑上使用其他标题编辑其他文件时,我从未遇到过这样的奇怪问题。
我的英语不好:&lt;,但任何建议都表示赞赏。
答案 0 :(得分:0)