使用wcstombs源代码

#include "stdafx.h"
#include <tchar.h>
#include <iostream>
#include <Windows.h>
using namespace std;

class A
{
public:
	void SetData(const OLECHAR* pwszData)
	{
		size_t cb = 0;

#if defined(_WIN32) && !defined(OLE2ANSI)
			setlocale(LC_ALL, ".936");
			cb = wcstombs(m_szData, pwszData, 1000 - 1);
#else
			strncpy(m_szData, pwszData, 1000 - 1);
#endif
	}

	void Print()
	{
		cout << "data:" << m_szData << endl;
	}

private:
	char	m_szData[100];
};

int _tmain(int argc, _TCHAR* argv[])
{
	OLECHAR* szValue = OLESTR("你好北京!");

	A a;
	a.SetData(szValue);
	a.Print();

	return 0;
}

 

你可能感兴趣的:(windows)