原来我真的很菜!

一年过去了,发现自己现在真的还很菜!

源自一个帖子,这里转贴如下:

<script type="text/javascript">function StorePage(){d=document;t=d.selection?(d.selection.type!='None'?d.selection.createRange().text:''):(d.getSelection?d.getSelection():'');void(keyit=window.open('http://www.365key.com/storeit.aspx?t='+escape(d.title)+'&u='+escape(d.location.href)+'&c='+escape(t),'keyit','scrollbars=no,width=475,height=575,left=75,top=20,status=no,resizable=yes'));keyit.focus();}</script>

 如何将CString类型的变量赋给char*类型的变量 <script language="javascript" type="text/javascript">document.title="如何将CString类型的变量赋给char*类型的变量 - "+document.title</script>
编号:QA002101  
建立日期:1999年11月25日最后修改日期:2004年1月1日
所属类别:C/C++ - 其他方面
  
操作系统: windows98
编程工具: VC++6.0
问题: 请问如何将CString类型的变量赋给char*类型的变量?(john)
  
Lu Tao的意见:
CString Msg;
Msg=Msg+"abc";
LPTSTR lpsz;
lpsz = new TCHAR[Msg.GetLength()+1];
_tcscpy(lpsz, Msg);
char * psz;
strcpy(psz,lpsz);


doublehu的意见:
char *ch;
CString str;
ch=(LPSTR)(LPCTSTR)str;

陈啸龙的意见:
CString mCS=_T("cxl");
char mch[20];
memcpy(mch,mCS,20);

李海、阿进的意见:
使用CString::GetBuffer函数。例子:
char *p;
CString str("hello");
p=str.GetBuffer(str.GetLength());


榕溶的意见:
CString aaa="aaa";
char *ch
ch=aaa.c_str;

相关问题:
QA002733 "WriteFile函数中的字符数组能否用CString对象来替代"

longbow问: 反过来怎么办?即如何将char*类型的变量赋给cstring型的变量?
李海:这很容易,可以直接赋值,如:
CString myString = "This is a test";
也可以利用构造函数,如:
CString s1( "Tom" );

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值