博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Windows 8 C++/CX字符串
阅读量:5797 次
发布时间:2019-06-18

本文共 2055 字,大约阅读时间需要 6 分钟。

在C++/CX里面是使用Platform::String类来表示字符串的类型,在windows运行时的接口和方法中,需要使用Platform::String来作为字符串参数的传递。如果需要使用标准C++的字符串类型如wstring或者string的时候,可以将Platform::String与标准的C++的字符串进行互相的转换。

 

String类型的构造

String类型表示的是char16的字符串,可以直接通过字符串的赋值来进行构造也可以使用标准C++的wchar_t*指针进行构造。

 

 
  1. // Initializing a String^ by using string literals  
  2.     String^ str1 = "Test"; // ok for ANSI text. uses current code page  
  3.     String^ str2("Test");  
  4.     String^ str3 = L"Test";  
  5.     String^ str4(L"Test");  
  6.  
  7.  
  8.     //Initialize a String^ by using another String^  
  9.  
  10.     String^ str6(str1);  
  11.     auto str7 = str2;  
  12.  
  13.     // Initialize a String from wchar_t* and wstring  
  14.     wchar_t msg[] = L"Test";  
  15.     String^ str8 = ref new String(msg);  
  16.     std::wstring wstr1(L"Test");  
  17.     String^ str9 = ref new String(wstr1.c_str());  
  18.     String^ str10 = ref new String(wstr1.c_str(), wstr1.length()); 

字符的操作

String提供了相关的方法来操作字符串,其中可以使用String::Data()方法来返回一个String^ 对象的wchar_t*指针。

 

 
  1. // Concatenation   
  2.     auto str1 = "Hello" + " World";  
  3.     auto str2 = str1 + " from C++/CX!";      
  4.     auto str3 = String::Concat(str2, " and the String class");  
  5.       
  6.     // Comparison  
  7.     if (str1 == str2) { /* ... */ }  
  8.     if (str1->Equals(str2)) { /* ... */ }  
  9.     if (str1 != str2) { /* ... */ }  
  10.     if (str1 < str2 || str1 > str2) { /* ... */};  
  11.     int result = String::CompareOrdinal(str1, str2);  
  12.       
  13.     if(str1 == nullptr) { /* ...*/};  
  14.     if(str1->IsEmpty()) { /* ...*/};  
  15.  
  16.    // Accessing individual characters in a String^  
  17.     auto it = str1->Begin();  
  18.     char16 ch = it[0]; 

String类型的转换

String类型可以和标准C++的wstring进行互相的转换

 

 
  1. // compile with: /ZW  
  2. #include <string> 
  3.  
  4. using namespace std;  
  5. using namespace Platform;  
  6.  
  7. int main( array<String^>^ args )   
  8. {  
  9.     // Create a String^ variable statically or dynamically from a   
  10.  
  11. literal string.   
  12.     String^ str1 = "AAAAAAAA";  
  13.       
  14.     // Use the value of str1 to create the ws1 wstring variable.  
  15.     wstring ws1( str1->Data() );   
  16.     // The value of ws1 is L"AAAAAAAA".  
  17.  
  18.     // Manipulate the wstring value.  
  19.     wstring replacement( L"BBB" );  
  20.     ws1ws1 = ws1.replace ( 1, 3, replacement );  
  21.     // The value of ws1 is L"ABBBAAAA".  
  22.  
  23.     // Assign the modified wstring back to str1.   
  24.     str1 = ref new String( ws1.c_str() );   
  25.  
  26.     return 0;  

 

本文转自linzheng 51CTO博客,原文链接:http://blog.51cto.com/linzheng/1078189

转载地址:http://agsfx.baihongyu.com/

你可能感兴趣的文章
通过vb.net 和NPOI实现对excel的读操作
查看>>
TCP segmentation offload
查看>>
java数据类型
查看>>
POJ NOI0105-43 质因数分解
查看>>
数据结构——串的朴素模式和KMP匹配算法
查看>>
jQuery的height()和JavaScript的height总结,js获取屏幕高度
查看>>
FreeMarker-Built-ins for strings
查看>>
验证DataGridView控件的数据输入
查看>>
POJ1033
查看>>
argparse - 命令行选项与参数解析(转)
查看>>
一维数组
查看>>
Linux学习笔记之三
查看>>
2463: [中山市选2009]谁能赢呢?
查看>>
微信公众号
查看>>
Android_内部文件读取
查看>>
QTP的那些事---webtable的一些重要使用集合精解
查看>>
POJ1061 青蛙的约会(扩展欧几里得)题解
查看>>
关于Android studio团队协同开发连接到已有项目
查看>>
Sql获取表的信息
查看>>
Java-大数据-图汇集
查看>>