我的c++程序编译时不能打开头文件#include<string.h>,是什么原因啊?
#include<STRING.H>#include<iostream.h>voidmain(){stringst("theexpenseofspirit\n");cou...
#include<STRING.H>
#include<iostream.h>
void main()
{string st("the expense of spirit\n");
cout<<"the size of"<<st<<"is"<<st.size()<<"charecters,including the newline\n";
}
编译不能通过,编译器不能识别string是一个已定义的类,给出的错误是error C2065: 'string' : undeclared identifier
我随后添加了#include <atlbase.h>,还是不行。代码有错误吗? 展开
#include<iostream.h>
void main()
{string st("the expense of spirit\n");
cout<<"the size of"<<st<<"is"<<st.size()<<"charecters,including the newline\n";
}
编译不能通过,编译器不能识别string是一个已定义的类,给出的错误是error C2065: 'string' : undeclared identifier
我随后添加了#include <atlbase.h>,还是不行。代码有错误吗? 展开
5个回答
展开全部
当出现错误:error C2065: ''CComVariant'' : undeclared identifier时
包含头文件:#include <atlbase.h> 即可
包含头文件:#include <atlbase.h> 即可
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
1.#include <string.h>
#include<iostream>
using namespace std;
2."<<st 不对,st是对象
#include<iostream>
using namespace std;
2."<<st 不对,st是对象
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
为什么不用
#include <cstring>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
把前两行这么改:
#include<string>
#include<iostream>
using namespace std;
#include<string>
#include<iostream>
using namespace std;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询