当前位置: 技术问答>linux和unix
solaris 上面用cc编译,老是说无法包含头文件 <vector>
来源: 互联网 发布时间:2016-05-13
本文导语: 我的代码: #include #include using namespace std; char* GetTime() { time_t tm; time(&tm); return asctime(gmtime(&tm)); } void main() { vector v; printf("now initial vector..."); printf("%s",GetTime()); for(int i=0;i
我的代码:
#include
#include
using namespace std;
char* GetTime()
{
time_t tm;
time(&tm);
return asctime(gmtime(&tm));
}
void main()
{
vector v;
printf("now initial vector...");
printf("%s",GetTime());
for(int i=0;i
#include
#include
using namespace std;
char* GetTime()
{
time_t tm;
time(&tm);
return asctime(gmtime(&tm));
}
void main()
{
vector v;
printf("now initial vector...");
printf("%s",GetTime());
for(int i=0;i