Toggle menu
862
3.8K
30.2K
279.1K
Catglobe Wiki
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Pre and Post Increment and Decrement: Difference between revisions

From Catglobe Wiki
Tungocman (talk | contribs)
No edit summary
Tungocman (talk | contribs)
No edit summary
Line 1: Line 1:
<p style="color:#000099; font-size:14px;"><strong>Array : The array object</strong></p>
'''Array&nbsp;: The array object'''


&nbsp;  
&nbsp;  
Line 17: Line 17:
<span style="color:#a52a2a;"><span style="font-size: 12px;">'''Examples'''</span></span>  
<span style="color:#a52a2a;"><span style="font-size: 12px;">'''Examples'''</span></span>  


&nbsp;
<code>


<span style="color:#000000;">number a = 1;</span>  
<span style="color:#000000;">number a = 1;</span>  
Line 34: Line 34:


<span style="color:#000000;">print(a);&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span><span style="color:#008000;">// 1</span>  
<span style="color:#000000;">print(a);&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span><span style="color:#008000;">// 1</span>  
</code>


&nbsp;  
&nbsp;  

Revision as of 07:43, 14 September 2011

Array : The array object

 

++x is pre-increment  and --x is pre-decrement

x++ is post-increment and x-- is post-decrement

 

With ++x and --x:  means x is incremented BEFORE being used.

With x++ and x--:  means x is incremented AFTER being used.

 

Examples

number a = 1;

number b;

b = ++a;

print(b);               // 2

print(a);               // 2

b = --a;

print(b);               // 1

print(a);               // 1

 

number c = 3;

number d;

d = c++;

print(d);                  // 3

print(c);                  // 4

d = c--;

print(d);                 // 4

print(c);                 // 3