Difference between revisions of "Tópicos Rápidos sobre C++"

From Wiki**3

 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{TOCright}}
+
Consultar:
== Basic C++ ==
+
* C++ reference (com referência às versões da linguagem): http://cppreference.com
 +
* Standard C++ site: http://isocpp.org
 +
* Outro: http://cplusplus.com
  
* [[Primitive types in C++]]
+
[[category:Programação com Objectos]]
* [[Defining functions in C++]]
+
[[category:Compiladores]]
* [[Namespaces in C++]]
+
[[category:Ensino]]
* [[Code organization in C++]]
 
 
 
== Classes and Objects ==
 
 
 
* [[Classes and Structures in C++]]
 
* [[Constructors and Destructors in C++]]
 
* [[Class Inheritance in C++]] (normal, virtual, multiple)
 
* [[Defining Methods in C++]] (binding, virtual, inline)
 
* Classes and [[Code Organization in C++]]
 
 
 
== Memory Management Issues ==
 
 
 
* [[Object Creation in C++]] (stack, heap, responsibilities)
 
* [[The "new" and "delete" Operators in C++]]
 
 
 
== Operators ==
 
 
 
* [[Operator Redefinition in C++]]
 
 
 
== The Standard Template Library (STL) ==
 
 
 
* [[STL Containers (C++)]]
 
* [[STL Algorithms (C++)]]
 
 
 
== Programming Examples ==
 
 
 
* [[Arabian Nights in C++]]
 
* [[Sheep and Herds in C++]]
 
 
 
== See Also ==
 
 
 
* [http://cplusplus.com/ C++]
 
** [http://cplusplus.com/reference/ C++ Library Reference] [http://cplusplus.com/reference/stl/ STL Containers] [http://cplusplus.com/reference/algorithm/ STL Algorithms]
 
** [http://cppreference.com/ C/C++ Reference]
 
 
 
[[category:OOP]]
 
[[category:Compilers]]
 
[[category:Teaching]]
 

Latest revision as of 09:56, 27 February 2015

Consultar: