2014年12月14日 星期日

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

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


 


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


 


zetcode_wxWidgets_helper_classes05(console application、wxPuts命令模式文字輸出-有換行、wxPrintf命令模式文字輸出取代printf、wxString.Len()計算字串長度)


 


#include <wx/string.h>
/*
http://zetcode.com/gui/wxwidgets/helperclasses/
The Len() method returns the number of characters in the string.
*/
int main(int argc, char **argv)
{
wxString str = wxT("The history of my life");
wxPrintf(wxT("The string has %d characters\n"), str.Len());
}


















 






沒有留言:

張貼留言