2014年12月8日 星期一

使用wxWidgets進行跨平台程式開發-zetcode_wxWidgets_helper_classes02(改寫)

使用wxWidgets進行跨平台程式開發-zetcode_wxWidgets_helper_classes02(改寫)


 


資料來源:http://zetcode.com/gui/wxwidgets/helperclasses/


 


 zetcode_wxWidgets_helper_classes02(console application、wxPuts命令模式文字輸出-有換行、wxString相加)


 


#include <wx/string.h>
/*
http://zetcode.com/gui/wxwidgets/helperclasses/
wxString is a class representing a character string.

In the following example, we define three wxStrings. We create one string of these strings using addition operation.
*/
int main(int argc, char **argv)
{
wxString str1 = wxT("Linux");
wxString str2 = wxT("Operating");
wxString str3 = wxT("System");

wxString str = str1 + wxT("") + str2 + wxT("") + str3;

wxPuts(str);
}


















 






沒有留言:

張貼留言