您的位置:首页 > 编程语言 > C语言/C++

HOW TO:在 Visual C++ .NET 中从 System::String* 转换为 Char*

2012-08-06 11:27 429 查看




概要

本文介绍使用 Visual C++ .NET 中的托管扩展从 System::String* 转换为 char* 的若干方法。 


方法 1

PtrToStringChars 指定了一个指向实际 String 对象的内部指针。如果将此指针传递给非托管函数调用,则必须先锁定该指针,以确保在进行异步垃圾回收过程中对象不会移动:


//#include <vcclr.h>
System::String * str = S"Hello world\n";
const __wchar_t __pin * str1 = PtrToStringChars(str);
wprintf(str1);



方法 2

StringToHGlobalAnsi 将托管 String 对象的内容复制到本机堆,然后动态地将它转换为美国国家标准学会 (ANSI) 格式。此方法将分配所需的本机堆内存:


//using namespace System::Runtime::InteropServices;
System::String * str = S"Hello world\n";
char* str2 = (char*)(void*)Marshal::StringToHGlobalAnsi(str);
printf(str2);
Marshal::FreeHGlobal(str2);



方法 3

VC7 CString 类有一个构造函数,它带有一个托管 String 指针并将其内容加载到 CString 中:


//#include <atlstr.h>
System::String * str = S"Hello world\n";
CString str3(str);
printf(str3);



完整代码示例


//compiler option:cl /clr
#include <vcclr.h>
#include <atlstr.h>
#include <stdio.h>
#using <mscorlib.dll>
using namespace System;
using namespace System::Runtime::InteropServices;

int _tmain(void)
{
System::String * str = S"Hello world\n";

//method 1
const __wchar_t __pin * str1 = PtrToStringChars(str);
wprintf(str1);

//method 2
char* str2 = (char*)(void*)Marshal::StringToHGlobalAnsi(str);
printf(str2);
Marshal::FreeHGlobal(str2);

//method 3
CString str3(str);
printf(str3);

return 0;
}




回到顶端
 | 提供反馈




参考

有关其他点击率最高的 Visual C++ .NET Microsoft 知识库文章,请访问以下 Microsoft Web 站点:
Visual C++ .NET (2002) 支持中心
http://support.microsoft.com/default.aspx?xmlid=fh%3BEN-US%3Bvcnet
有关 Visual C++ .NET 的更多一般信息,请访问下面的 Microsoft Usenet 新闻组:
Microsoft.public.dotnet.languages.vc 

转自:http://support.microsoft.com/kb/311259
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息