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

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

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

 

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

 

zetcode_wxWidgets_helper_classes03(console application、wxPuts命令模式文字輸出-有換行、wxString.Printf組合不同型態變成字串)

 

#include <wx/string.h>
/*
http://zetcode.com/gui/wxwidgets/helperclasses/
The Printf() method is used to format strings.
*/
int main(int argc, char **argv)
{
int flowers = 21;
wxString str;
str.Printf(wxT("There are %d red roses."), flowers);
wxPuts(str);
}





 



發表迴響

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