我正在学习C++,但我只开发控制台应用程序,因为图形化C++开发非常困难,那么我想知道是否可以开发用于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 OS上唯一的内置stdin / stdout接口(interface)是 secret 的“网络控制台”。我在http://palmos.combee.net/blog/HiddenIOConsole.html上的一个旧博客条目中写了这个。但是,没有为此的C++绑定(bind),因此您需要创建自己的流类来调用这些函数,并且所需的旧版本的SDK在ACCESS的当前网站上早已被遗忘。您可能可以在适用于Palm OS的CodeWarrior的旧版本中找到它。

08-16 02:02