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

使用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());
}





 



發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *