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

From Wiki**3

(Desenvolvimento em Java)
(Máquinas Virtuais para Desenvolvimento)
Line 33: Line 33:
 
Está disponível uma máquina virtual, koops:
 
Está disponível uma máquina virtual, koops:
 
* https://www.l2f.inesc-id.pt/~david/ist/docencia/po/vm/
 
* https://www.l2f.inesc-id.pt/~david/ist/docencia/po/vm/
 
+
* http://susegallery.com/a/tuLZgC/koops32 (arquitectura de 32 bits)
Existem dois formatos e duas arquitecturas (32 e 64 bits):
 
* Live CD/DVD (iso) (pode ser gravado para CD/DVD)
 
* VirtualBox/VMWare virtual machine
 
 
 
Informação actualizada (e mais formatos) sobre esta máquina pode ser obtida da [http://susegallery.com/ SUSE Gallery]  (registo e login possivelmente necessários)
 
* http://susegallery.com/a/tuLZgC/koops (64 bits)
 
* http://susegallery.com/a/tuLZgC/koops32 (32 bits)
 
  
 
Dados de acesso à máquina:
 
Dados de acesso à máquina:

Revision as of 18:04, 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 2010/2011 editions):

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