Difference between revisions of "Language Logic"

esse quam videri
Jump to: navigation, search
m
(Variables)
Line 4: Line 4:
 
Variables are objects that are given names, values and sometimes object types.
 
Variables are objects that are given names, values and sometimes object types.
 
<table><th>Examples</th>
 
<table><th>Examples</th>
<tr><td>C</td><td>char[]* name = "value";</td></tr>
+
<tr><td>C</td><td>char* name = "value";</td></tr>
<tr><td>C++</td><td>char[]* name = "value";</td></tr>
+
<tr><td>C++</td><td>char* name = "value";</td></tr>
<tr><td>C++0x</td><td>char[]* name = "value";</td></tr>
+
<tr><td>C++0x</td><td>char* name = "value";</td></tr>
 
<tr><td>C#</td><td>string name = "value";</td></tr>
 
<tr><td>C#</td><td>string name = "value";</td></tr>
 
</table>
 
</table>

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

Collections

Pointers

Custom Objects

Structs

Unions

Classes/Modules

Inheritance
Single Inheritance
Multiple Inheritance
Virtual Inheritance
Conditional Inheritance

Interfaces

Methods

Namespaces

Loops

Recursion

Repetition

Iteration

Functions