Difference between revisions of "Language Logic"

esse quam videri
Jump to: navigation, search
m (Custom Objects)
m (Variables)
Line 9: Line 9:
 
<tr><td>C#</td><td>string name = "value";</td></tr>
 
<tr><td>C#</td><td>string name = "value";</td></tr>
 
</table>
 
</table>
 +
====Object Types====
 +
 
====Type Modifiers====
 
====Type Modifiers====
  

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

Object Types

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