Difference between revisions of "Programação com Objectos"

From Wiki**3

(Máquinas Virtuais para Desenvolvimento)
(Desenvolvimento em Java)
Line 41: Line 41:
 
== Desenvolvimento em Java ==
 
== Desenvolvimento em Java ==
  
Aplicação exemplo (aplicação bancária em Java) para apoio à construção do projecto (these are the 2010/2011 editions):
+
Aplicação exemplo (aplicação bancária em Java) para apoio à construção do projecto (these are the 2011/2012 editions):
 
* [[Media:po-uilib-201109251634.tar.bz2|po-uilib-201109251634.tar.bz2]] - Base interaction package, a.k.a. '''po-uilib'''
 
* [[Media:po-uilib-201109251634.tar.bz2|po-uilib-201109251634.tar.bz2]] - Base interaction package, a.k.a. '''po-uilib'''
 
* [[Media:po-bank-core-201109251634.tar.bz2|po-bank-core-201109251634.tar.bz2]] - Core functionality, a.k.a. '''bank-core'''
 
* [[Media:po-bank-core-201109251634.tar.bz2|po-bank-core-201109251634.tar.bz2]] - Core functionality, a.k.a. '''bank-core'''
 
* [[Media:po-bank-support-201109251634.tar.bz2|po-bank-support-201109251634.tar.bz2]] - Support code (labels, messages, user interface exceptions), a.k.a. '''bank-support'''
 
* [[Media:po-bank-support-201109251634.tar.bz2|po-bank-support-201109251634.tar.bz2]] - Support code (labels, messages, user interface exceptions), a.k.a. '''bank-support'''
 
* [[Media:po-bank-textui-201109251634.tar.bz2|po-bank-textui-201109251634.tar.bz2]] - Text-based user interface, a.k.a., '''bank-textui'''
 
* [[Media:po-bank-textui-201109251634.tar.bz2|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).
 
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).

Revision as of 18:05, 21 October 2011

Programação com Objectos
Introduction
Creation and Destruction
Inheritance & Composition
Abstraction & Polymorphism
Code Organization
Java Topics
Inner Classes
Enumerations
Data Structures
Exceptions
Input/Output
RTTI
Other Topics
JUnit Tests
UML Topics
Design Patterns
"Simple" Factory
Composite & Visitor
Command
Strategy & State
Template Method
Observer
Abstract Factory
Decorator & Adapter
Façade (aka Facade)

Tópicos Teóricos e Práticos

Teoria e Análise de Exemplos

Exercícios e Problemas

Ambientes de Desenvolvimento e Linguagens de Programação

Máquinas Virtuais para Desenvolvimento

Está disponível uma máquina virtual, koops:

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):

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:

Desenvolvimento em C++

Information about C++ and the C++ STL can be found in the following sites:

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).