问题描述
- GDI+中image.save方法参数类型问题 VC++6
-
第一个参数是地址 普通表示为L"C://"
我想用CString 类来替代这个怎么做
解决方案
CString src = _T(“你好”); //在Unicode环境下面src是CStringW类型
CStringA temp = src.GetBuffer(0); //通过转化,temp接受了原来字符串的多字节形式
string dst = temp.GetBuffer(0); //现在就可以将值直接赋给string类型了
解决方案二:
error C2065: 'CStringA' : undeclared identifier
error C2146: syntax error : missing ';' before identifier 'temp'
error C2065: 'temp' : undeclared identifier
error C2440: '=' : cannot convert from 'char *' to 'int'
时间: 2025-01-30 02:00:27