CString->char*.,char*->CString,char*->LPCTSTR

CString->char*

CString strSource;//宣告CString
char* charSource; //宣告char*

法1:
charSource = (char*)strSource.GetBuffer(0);

法2:
charSource = (char*)strSource.GetBuffer(strSource.GetLength());

法3:
charSource = (char*)(LPCTSTR)strSource;

char*->CString

char* temp;

....

//生成我们需要的CString对象
CString str(temp);

char*->LPCTSTR

char* res=..;
LPCTSTR lpc;
lpc = (LPCTSTR)(LPCTSTR)res;

原文地址:https://www.cnblogs.com/jakejian/p/9141360.html

时间: 2024-10-10 04:24:31

CString->char*.,char*->CString,char*->LPCTSTR的相关文章

VC中BSTR、Char*、CString和CComBSTR类型的转换

原文:http://blog.csdn.net/wanghaihao_1/article/details/37498689 1.char*转换成CString 若将char*转换成CString,除了直接赋值外,还可使用CString::format进行.例如: char* p = "This is a test"; 或CString theString = p;theString.format("%s", p);theString = p; 2.CString转换

string,char*及CString类型的相互转换

首先先介绍一下什么是CString CString是MFC的字符串类,它不是基本类型,而是对字符串的封装,它是自适应的,在UNICODE环境下就是CStringW,在非UNICODE环境下就是CStringA. 如从对话框中利用 GetWindowText 得到的字符串就是 CString 类型, CString 定义在头文件中.CString(typedef CStringT> CString) 为 Visual C++ 中最常用的字符串类, 继承自 CSimpleStringT 类,主要应用

unicode下char*和CString

1.对话框打印char* char* info=""; ::MessageBoxA(this->m_hWnd, info, "", MB_OK); 2.CString转char* int nLen; char * wsabuf = NULL;#ifdef _UNICODE //CString转换成char* USES_CONVERSION; wsabuf = W2A(send_txt_str);//send_txt_str为CString消息#else#end

CString 转化成 const char* 类型

写程序的时候经常会遇到无法将“CString”转换为“const char *”的错误,这里我找到了一个解决办法,与大家分享下: CString cs = _T("123123"); const size_t strSize = (cs.GetLength() + 1) * 2; char *p = new char[strSize]; size_t sz = 0; wcstombs_s(&sz, p, strSize, cs, _TRUNCATE); int n = atoi

unicode下各种类型转换,CString,string,char*,int,char[]

把最近用到的各种unicode下类型转换总结了一下,今后遇到其他的再补充: 1.string转CString string a=”abc”; CString str=CString(a.c_str()); 或str.format("%s", a.c_str()) 2.int转CString Int a; CString Cstr; Cstr.Format(_T("%d"),a); 3.char 转 CString CString.format("%s&qu

char 与 unsigned char的本质区别

在C中,默认的基础数据类型均为signed,现在我们以char为例,说明(signed) char与unsigned char之间的区别. 首先在内存中,char与unsigned char没有什么不同,都是一个字节,唯一的区别是,char的最高位为符号位,因此char能表示-127~127,unsigned char没有符号位,因此能表示0~255,这个好理解,8个bit,最多256种情况,因此无论如何都能表示256个数字. 在实际使用过程种有什么区别呢?主要是符号位,但是在普通的赋值,读写文

const char*、char*、char* const、char[]、string的区别

1.const char* p: p is a pointer to const char(char const* p 一样)   意思就是不能通过p指针来修改p指向的内容(但是内容可以修改).2.char* p      : p is a pointer to char   意思就是可通过p指针来修改p指向的内容3.char* const p: p is a const pointer to char   意思就是p指针是一个常指针,他指向的内存地址不能变,定义的时候就得初始化   一旦给指针

char 与 unsigned char之间的坑

在C中,默认的基础数据类型均为signed,现在我们以char为例,说明(signed) char与unsigned char之间的区别 首先在内存中,char与unsigned char没有什么不同,都是一个字节,唯一的区别是,char的最高位为符号位,因此char能表示-128~127, unsigned char没有符号位,因此能表示0~255,这个好理解,8个bit,最多256种情况,因此无论如何都能表示256个数字. 在实际使用过程种有什么区别呢? 主要是符号位,但是在普通的赋值,读写

C语言char s[] 和 char *s的区别

C语言char s[] 和 char *s的区别,下面这个回答讲解的很清晰. The difference here is that char *s = "Hello world"; will place Hello world in the read-only parts of the memory and making s a pointer to that, making any writing operation on this memory illegal. While do

char*,const char*和string 三者转换

1. const char* 和string 转换 (1) const char*转换为 string,直接赋值即可. EX: const char* tmp = "tsinghua". string s = tmp; (2) string转换为const char*,利用c_str() EX:  string s = "tsinghua"; const char*tmp = s.c_str(); 2. char*和const char*之间的转换 (1) cons