我正在學習C++,但我只開發控制檯應用程序,因爲圖形C++開發是如此困難,那麼我想知道,如果我可以開發控制檯像Palm OS應用程序,我是什麼想要的是,編譯此代碼爲Palm OS爲例:開發控制檯就像應用程序的Palm OS
// ClientFille.cpp
// Cria um arquivo sequencial.
#include <iostream>
using std::cerr;
using std::cin;
using std::cout;
using std::endl;
using std::ios;
#include <fstream> // Fluxo de arquivos
using std::ofstream; // Gera a saída do fluxo do arquivo
#include <cstdlib>
using std::exit; // Sai do protótipo de funcão
int main()
{
// Construtor ofstream abre arquivo
ofstream outClientFile("Clients.dat", ios::out);
// Fecha o programa se não conseguir criar o arquivo
if (!outClientFile) // Operador ! sobrecarregado
{
cerr << "File could not be opened" << endl;
exit(1);
} // Fim do if
cout << "Enter the account, name, and balance." << endl
<< "Enter end-of-file to end the input.\n? ";
int account;
char name[ 30 ];
double balance;
// Lê conta, nome e saldo a partir de cin, então coloca no arquivo
while (cin >> account >> name >> balance)
{
outClientFile << account << ' ' << name << ' ' << balance << endl;
cout << "? ";
} // Fim do while
return 0; // Destruitor ofstream fecha o arquivo
} // Fim de main
謝謝!
一分鐘開發自己的操作系統,下一個他自己的編譯器。現在在一個Palm上編寫C++應用程序!我不得不承認,與納丹在一起時刻都沒有沉悶。 – 2009-08-02 21:30:33