=====================此方法在PPC上可编译通过 ,并且正常使用=======================

转自:Siddhartha Rao

// 传统的方法在VS2005的PPC平台上无法编译通过,或者不起作用,要么需要两次转换

//CString->bstr,bstr->string或Cstring->wchar * ->char *等

There are really many ways to do it.

But, the simplest one is just this -

CString strSomeCstring ("This is a CString Object");

// Use ANSI variant CStringA to convert to char*; construct from it -
std::string strStdString (CStringA (strSomeCstring));


Note that as discussed in this post, CStringA is a template specialization of class CStringT for type char avaílable with Visual Studio 7.x and better.

=======================以下介绍Cstring与其他数据类型的转换========================

转自 :LEO

 

, pWideChar );
}

相关文章:

  • 2022-02-17
  • 2021-10-05
  • 2022-12-23
  • 2022-12-23
  • 2022-01-23
  • 2021-09-16
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-06-30
  • 2022-02-09
  • 2022-12-23
  • 2022-01-27
  • 2022-12-23
  • 2021-08-16
相关资源
相似解决方案