2014年12月15日 星期一

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

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


 


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


 


zetcode_wxWidgets_helper_classes06(console application、wxPuts命令模式文字輸出-有換行、wxString.MakeLower() and wxString.MakeUpper()轉大小寫)


 


 


#include <wx/string.h>
/*
http://zetcode.com/gui/wxwidgets/helperclasses/
The MakeLower() and MakeUpper() methods make characters lower case and upper case.
*/
int main(int argc, char **argv)
{
wxString str = wxT("The history of my life");

wxPuts(str.MakeLower());
wxPuts(str.MakeUpper());
}

 

















 






沒有留言:

張貼留言