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

From Wiki**3

(Desenvolvimento em Java)
(Exercícios e Problemas)
Line 11: Line 11:
  
 
== Exercícios e Problemas ==
 
== Exercícios e Problemas ==
 +
 +
Testes de avaliação (por data):
  
 
{| width="60%" valign="top"
 
{| width="60%" valign="top"
 
! valign="top" align="left" style="font-weight: normal;" |
 
! valign="top" align="left" style="font-weight: normal;" |
* [[Programação com Objectos - Teste de Dezembro de 2005|Teste de 2005/12]]
+
* [[Programação com Objectos - Teste de Dezembro de 2005|2005/12]]
 
! valign="top" align="left" style="font-weight: normal;" |
 
! valign="top" align="left" style="font-weight: normal;" |
* [[Teste de Dezembro de 2008|Teste de 2008/12]]
+
* [[Teste de Dezembro de 2008|2008/12]]
 
! valign="top" align="left" style="font-weight: normal;" |
 
! valign="top" align="left" style="font-weight: normal;" |
* [[Programação com Objectos - Teste de 2009/01/24|Teste de 2009/01/24]]
+
* [[Programação com Objectos - Teste de 2009/01/24|2009/01/24]]
 
! valign="top" align="left" style="font-weight: normal;" |
 
! valign="top" align="left" style="font-weight: normal;" |
* [[Programação com Objectos - Teste de 2010/01/04|Teste de 2010/01/04]]
+
* [[Programação com Objectos - Teste de 2010/01/04|2010/01/04]]
 
! valign="top" align="left" style="font-weight: normal;" |
 
! valign="top" align="left" style="font-weight: normal;" |
* [[Programação com Objectos - Teste de 2010/01/21|Teste de 2010/01/21]]
+
* [[Programação com Objectos - Teste de 2010/01/21|2010/01/21]]
 
! 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|2011/01/10]]
 
! valign="top" align="left" style="font-weight: normal;" |
 
! valign="top" align="left" style="font-weight: normal;" |
* [[Programação com Objectos - Teste de 2012/01/07|Teste de 2012/01/07]]
+
* [[Programação com Objectos - Teste de 2012/01/07|2012/01/07]]
 
! valign="top" align="left" style="font-weight: normal;" |
 
! valign="top" align="left" style="font-weight: normal;" |
* [[Programação com Objectos - Teste de 2012/01/30|Teste de 2012/01/30]]
+
* [[Programação com Objectos - Teste de 2012/01/30|2012/01/30]]
 
|}
 
|}
  

Revision as of 16:20, 10 September 2012

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

Testes de avaliação (por data):

Ambientes de Desenvolvimento e Linguagens de Programação

CVS Crash Course

Máquinas Virtuais para Desenvolvimento

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

Dados de acesso à máquina:

  • Username: oops
  • Password: linux

Esta máquina já contém o ambiente necessário ao desenvolvimento do projecto, incluindo o material de apoio definido em cada ano lectivo.

Esta máquina define ainda o ambiente de avaliação oficial.

Desenvolvimento em Java

Aplicação exemplo (aplicação bancária em Java) para apoio à construção do projecto (these are the 2011/2012 editions but are also valid for 2012/2013):

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 this quick and dirty guide:

The Java version in use is 1.7. However 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:

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