Difference between revisions of "Language Logic"

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

Revision as of 22:47, 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";

Type Modifiers

Storage Classes

Object Scope

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

Unions

Functions/Methods

Classes/Modules

Structs/Interfaces

Namespaces

Object Relationships

Inheritance (Is a...)

Single Inheritance

Multiple Inheritance

Virtual Inheritance

Conditional Inheritance

Containment (Has a...)

Association(Uses a...)

Loops

Recursion

Repetition

Iteration