Programação com Objectos
From Wiki**3
Tópicos Teóricos e Práticos
- Tópicos sobre Programação com Objectos (teoria e prática)
Projecto: Aplicação Bancária (exemplo de projecto)
Este exemplo de projecto apresenta uma aplicação bancária em Java, cuja estrutura é semelhante à do projecto a desenvolver. A versão apresentada é válida para 2013/2014.
- po-uilib-201308300030.tar.bz2 - Base interaction package, a.k.a. po-uilib
- po-bank-core-201308300030.tar.bz2 - Core functionality, a.k.a. bank-core
- po-bank-support-201308300030.tar.bz2 - Support code (labels, messages, user interface exceptions), a.k.a. bank-support
- po-bank-textui-201308300030.tar.bz2 - Text-based user interface, a.k.a., bank-textui
Each package includes a makefile to compile and build the corresponding JAR archive. Note that the makefiles assume that all JAR dependencies reside in /usr/share/java (linux installation -- other environments may, and indeed should work, but are not covered in this text).
More information can be found in these pages:
- Comando (padrão_de_desenho) - describes the design pattern underlying the structure of the textual interface
- Banco, Conta, Titular (aplicação bancaria) - describes the bank application
You may want to read these quick and dirty guides:
- CVS Crash Course
- Quick-and-Dirty Guide to Transforming the Bank Application into your Very Own Project (this guide is outdated and is provided only as a general guideline and example of how to start development from existing code: use at your own risk!)
Testes de Avaliação (por data)
20130204 (1) 20130204 (2) 20130117 20121119
20120130 20120107 20110110 20100121 20100104 20090124 200812 200512
Máquinas Virtuais para Desenvolvimento
Esta máquina koops32 já contém o ambiente necessário ao desenvolvimento do projecto, incluindo o material de apoio definido em cada ano lectivo.
- https://www.l2f.inesc-id.pt/~david/ist/docencia/po/vm/
- http://susegallery.com/a/tuLZgC/koops32 (arquitectura de 32 bits)
Dados de acesso à máquina:
- Username: oops
- Password: linux
Esta máquina corresponde ao ambiente de avaliação oficial.
Desenvolvimento em Java
The Java version in use is 1.7. However, in general, any version from 1.5 should be appropriate.
Information about the Java API can be found in the following sites:
Desenvolvimento em C++
Information about C++ and the C++ STL can be found in the following sites:
- Manual de Referência para C++ (biblioteca) STL (contentores) STL (algoritmos)
- Manual de Referência para C/C++
Desenvolvimento em PHP
PHP is syntactically similar to both Java and C++ and shares many of the features present in these languages. However, variables in PHP is usually untyped (implying dynamic binding).