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
Cg_pham (talk | contribs)
No edit summary
 
(7 intermediate revisions by one other user not shown)
Line 1: Line 1:
'''Array : The array object'''
{{HelpFiles}}
 
= Pre and Post Increment and Decrement  =
 


<span style="color:#000000;">++x is pre-increment&nbsp; and --x is pre-decrement</span>  
<span style="color:#000000;">++x is pre-increment&nbsp; and --x is pre-decrement</span>  


<span style="color:#000000;">x++ is post-increment and x-- is post-decrement</span>  
<span style="color:#000000;">x++ is post-increment and x-- is post-decrement</span>  
&nbsp;


<span style="color:#000000;">With ++x and --x: &nbsp;means x is incremented '''BEFORE''' being used.</span>  
<span style="color:#000000;">With ++x and --x: &nbsp;means x is incremented '''BEFORE''' being used.</span>  
Line 13: Line 10:
<span style="color:#000000;">With x++ and x--: &nbsp;means x is incremented '''AFTER''' being used.</span>  
<span style="color:#000000;">With x++ and x--: &nbsp;means x is incremented '''AFTER''' being used.</span>  


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


<span style="color:#000000;" />
<source lang="javascript">number a = 1;
<source lang="">number a = 1;
number b;
number b;
b = ++a;
b = ++a;
Line 27: Line 19:
b = --a;
b = --a;
print(b);              // 1
print(b);              // 1
print(a);              // 1</source>
print(a);              // 1</source>&nbsp;  
<span style="color:#008000;" />
 
&nbsp;
 
<span style="color:#000000;">number c = 3;</span>
 
<span style="color:#000000;">number d;</span>
 
<span style="color:#000000;">d = c++;</span>
 
<span style="color:#000000;">print(d);&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; </span><span style="color:#008000;">// 3</span>
 
<span style="color:#000000;">print(c); &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;</span><span style="color:#008000;">// 4</span>
 
<span style="color:#000000;">d = c--;</span>
 
<span style="color:#000000;">print(d);&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;</span><span style="color:#008000;">// 4</span>


<span style="color:#000000;">print(c);&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span><span style="color:#008000;">// 3</span>  
<source lang="javascript">number c = 3;
number d;
d = c++;
print(d);                 // 3
print(c);                 // 4
d = c--;
print(d);                 // 4
print(c);                 // 3</source>  


[[Category:Operators]]
[[Category:Operators]]

Latest revision as of 07:05, 14 December 2011

Pre and Post Increment and Decrement

++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