Difference between revisions of "Language Logic"

esse quam videri
Jump to: navigation, search
m
m (Custom Objects)
Line 31: Line 31:
 
====Structs====
 
====Structs====
 
====Unions====
 
====Unions====
 +
====Functions====
 +
====Methods====
 
====Classes/Modules====
 
====Classes/Modules====
 
====Interfaces====
 
====Interfaces====
====Functions====
+
 
====Methods====
 
 
===Namespaces===
 
===Namespaces===
  

Revision as of 22:16, 7 September 2009

Programming Club

Objects

Variables

Variables are objects that are given names, values and sometimes object types.

Examples
Cchar* name = "value";
C++char* name = "value";
C++0xchar* name = "value";
C#string name = "value";

Pointers

Referencing

De-referencing

Collections

Arrays

Single-Dimensional Arrays
Multi-Dimensional Arrays
Jagged/Nested Arrays

Lists

LinkedLists
Doubly-Linked Lists
Circular-Linked Lists

Custom Objects

Structs

Unions

Functions

Methods

Classes/Modules

Interfaces

Namespaces

Object Relationships

Polymorphism (Is a...)

Single Inheritance

Multiple Inheritance

Virtual Inheritance

Conditional Inheritance

Containment (Has a...)

Association(Uses a...)

Loops

Recursion

Repetition

Iteration