码迷,mamicode.com
首页 > 其他好文 > 详细

wxWidgets中的类型转换

时间:2014-06-25 08:21:37      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:style   get   string      for   c   

1int  to wxString:     wxString str = wxString::Format(wxT("%i"),myInt);


2wxString to int :     int i;  i = wxAtoi(str);


3 string to wxString:     std::string stlString = "sdfas"; wxString mystr(stlString .c_str(),wxConvUTF8);
4 wxString to string:    
wxString mystring(wxT("HelloWorld"));
 std::string stlstring = std::string(mystring.mb_str());
5char* to wxString:  
char* chars = "Hello world";
wxString mystring(chars, wxConvUTF8);
6 wxString to  char*:   char* cs = str.mb_str(wxConvUTF8);
7char[] to wxString:   
        char chars[34] = "sefasd";
wxstring mystring(chars, wxConvUTF8);
8wxString to char[]:


wxString mystring(wxT("HelloWorld"));
char cstring[1024];
strcpy(cstring, (const char*)mystring.mb_str(wxConvUTF8));
 
二、wxdatetime 与wxstring转换
 
2.1  wxdatetime to wxstring :
wxDateTime dt = CalendarCtrl1->GetDate();
wxString msg = dt.Format(wxT("%Y-%m-%d"),wxDateTime::A_EST);
2.2 wxstring to wxdatetime:   char* ca = "2008-09-03";wxDateTime dt;dt.ParseDate(ca);

wxWidgets中的类型转换,布布扣,bubuko.com

wxWidgets中的类型转换

标签:style   get   string      for   c   

原文地址:http://blog.csdn.net/u012388338/article/details/34152115

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!