Programação com Objectos: Difference between revisions
From Wiki**3
Line 25: | Line 25: | ||
! valign="top" align="left" style="font-weight: normal;" | | ! valign="top" align="left" style="font-weight: normal;" | | ||
* [[Programação com Objectos - Teste de 2011/01/10|Teste de 2011/01/10]] | * [[Programação com Objectos - Teste de 2011/01/10|Teste de 2011/01/10]] | ||
! valign="top" align="left" style="font-weight: normal;" | | |||
* [[Programação com Objectos - Teste de 2012/01/07|Teste de 2012/01/07]] | |||
|} | |} | ||
Revision as of 10:15, 18 January 2012
Tópicos Teóricos e Práticos
Teoria e Análise de Exemplos
- Tópicos sobre Programação com Objectos (teoria e prática)
- Tópicos sobre escrita de testes com JUnit
Exercícios e Problemas
Ambientes de Desenvolvimento e Linguagens de Programação
CVS Crash Course
Máquinas Virtuais para Desenvolvimento
Está disponível uma máquina virtual, koops:
- 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
Desenvolvimento em Java
Aplicação exemplo (aplicação bancária em Java) para apoio à construção do projecto (these are the 2011/2012 editions):
- po-uilib-201109251634.tar.bz2 - Base interaction package, a.k.a. po-uilib
- po-bank-core-201109251634.tar.bz2 - Core functionality, a.k.a. bank-core
- po-bank-support-201109251634.tar.bz2 - Support code (labels, messages, user interface exceptions), a.k.a. bank-support
- po-bank-textui-201109251634.tar.bz2 - Text-based user interface, a.k.a., bank-textui
More (official) information: https://fenix.ist.utl.pt/disciplinas/po-4/2011-2012/1-semestre/projecto/desenvolvimento-do-projecto
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).
You may want to read the the quick and dirty guide (use at your risk!):
Information about the Java API can be found in the following sites:
- Java Platform, Standard Edition 5 API Specification
- Java Platform, Standard Edition 6 API Specification
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).