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

From Wiki**3

(Tópicos o Desenvolvimento em Java e C++)
(Tópicos o Desenvolvimento em Java e C++)
Line 7: Line 7:
 
* [[Tópicos sobre Programação com Objectos]] (teoria e prática)
 
* [[Tópicos sobre Programação com Objectos]] (teoria e prática)
  
== Tópicos o Desenvolvimento em Java e C++ ==
+
= Tópicos o Desenvolvimento em Java e C++ =
 +
 
 +
== 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 2010/2011 editions):
 
* [[Media:po-uilib-201010151128.tar.bz2|po-uilib-201010151128.tar.bz2]] - Base interaction package, a.k.a. '''po-uilib'''
 
* [[Media:po-uilib-201010151128.tar.bz2|po-uilib-201010151128.tar.bz2]] - Base interaction package, a.k.a. '''po-uilib'''
* [[Media:po-bank-core-201010211032.tar.bz2|po-bank-core-201010211032.tar.bz2]] - Core functionality, a.k.a. '''bank-core''' [download]
+
* [[Media:po-bank-core-201010211032.tar.bz2|po-bank-core-201010211032.tar.bz2]] - Core functionality, a.k.a. '''bank-core'''
* [[Media:po-bank-strings-201010211032.tar.bz2|po-bank-strings-201010211032.tar.bz2]] - String generation (labels, messages, user interface exceptions), a.k.a. '''bank-strings''' [download]
+
* [[Media:po-bank-strings-201010211032.tar.bz2|po-bank-strings-201010211032.tar.bz2]] - String generation (labels, messages, user interface exceptions), a.k.a. '''bank-strings'''
* [[Media:po-bank-textui-201010211032.tar.bz2|po-bank-textui-201010211032.tar.bz2]] - Text-based user interface, a.k.a., '''bank-textui''' [download]
+
* [[Media:po-bank-textui-201010211032.tar.bz2|po-bank-textui-201010211032.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).
 
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 [[Quick-and-Dirty Guide to Transforming the Bank Application into your Very Own Project]] (use at your risk!)
 +
 +
== Desenvolvimento em C++ ==
  
 
* [[Tópicos Rápidos sobre C++]]
 
* [[Tópicos Rápidos sobre C++]]

Revision as of 17:38, 24 October 2010

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

Tópicos o Desenvolvimento em Java e C++

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 Quick-and-Dirty Guide to Transforming the Bank Application into your Very Own Project (use at your risk!)

Desenvolvimento em C++

Exercícios e Problemas

A Few Notes on Unit Testing

Linguagens de Programação