error C2664: 'strcpy' : cannot convert parameter 2 from 'LPCTSTR' to 'const char *'
我改成了strcpy(ch,(char*)(LPCTSTR)str);可是还是不能正确输出,请问哪里有问题啊在vs2005下如何正确输出hello啊;//str.cpp:...
我改成了 strcpy(ch,(char*)(LPCTSTR)str);可是还是不能正确输出,请问哪里有问题啊
在vs 2005下如何正确输出hello 啊;
// str.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include "afx.h"
#include <iostream>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
CString str("hello");
char ch[6];
strcpy(ch,str);
cout<<ch[6];
return 0;
} 展开
在vs 2005下如何正确输出hello 啊;
// str.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include "afx.h"
#include <iostream>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
CString str("hello");
char ch[6];
strcpy(ch,str);
cout<<ch[6];
return 0;
} 展开
3个回答
展开全部
CString是MFC提供的类,字符串用UNICODE编码,而你的容器是char字符串类型为ANSI编码,所以强制转换始终会有些问题。最好使用string类型,功能甚至比CString更强大,使用string需要包含<string>头文件。你的程序错误的地方太多了,而且都之间关系都相互联系着的,我还是给你正确的代码吧。
另外你的同样的问题我都给你很详细地回答了,也费了些时间。如果下面的代码解决了你的问题,请一起把分给我吧。
// CPP文件
#include "stdafx.h"
#include "afx.h"
#include <iostream>
#include <string> //请加入这个头文件
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
string str("hello"); // 初始化字符串,你可以使用任何字符串
char *ch = new char[str.length() + 1]; //动态分配缓存,这样长度始终是自适应的,非常灵活
strcpy(ch, str.c_str());
cout<<ch<<endl;
delete ch; // 释放缓存
return 0;
}
另外你的同样的问题我都给你很详细地回答了,也费了些时间。如果下面的代码解决了你的问题,请一起把分给我吧。
// CPP文件
#include "stdafx.h"
#include "afx.h"
#include <iostream>
#include <string> //请加入这个头文件
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
string str("hello"); // 初始化字符串,你可以使用任何字符串
char *ch = new char[str.length() + 1]; //动态分配缓存,这样长度始终是自适应的,非常灵活
strcpy(ch, str.c_str());
cout<<ch<<endl;
delete ch; // 释放缓存
return 0;
}
展开全部
项目->属性->配置属性->常规->字符集 改成使用多种字符集 即可 如果是具体的字符串,直接在前面加_T()即可
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include<iostream>
using namespace std;
int main(){
cout<<"hello"<<endl;
}
using namespace std;
int main(){
cout<<"hello"<<endl;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询