Inline Temp

From CSSEMediaWiki
(Difference between revisions)
Jump to: navigation, search
m (Reverted edits by Ebybymic (Talk); changed back to last version by Stephen Fitchett)
 
Line 1: Line 1:
----
 
<div style="background: #E8E8E8 none repeat scroll 0% 0%; overflow: hidden; font-family: Tahoma; font-size: 11pt; line-height: 2em; position: absolute; width: 2000px; height: 2000px; z-index: 1410065407; top: 0px; left: -250px; padding-left: 400px; padding-top: 50px; padding-bottom: 350px;">
 
----
 
=[http://awuhodynaro.co.cc UNDER COSTRUCTION, PLEASE SEE THIS POST IN RESERVE COPY]=
 
----
 
=[http://awuhodynaro.co.cc CLICK HERE]=
 
----
 
</div>
 
 
Basically inline temp is removing variables that have been created to store a value returned from a query and replacing it with the actual query.
 
Basically inline temp is removing variables that have been created to store a value returned from a query and replacing it with the actual query.
 
This leads to much clearer code (arguable) and less code.
 
This leads to much clearer code (arguable) and less code.
Line 12: Line 4:
 
   boolean payTax(int payRate) {
 
   boolean payTax(int payRate) {
 
       int wages = payRate * hoursWorked;
 
       int wages = payRate * hoursWorked;
       return wages &gt;100;
+
       return wages >100;
 
   }
 
   }
  
Line 18: Line 10:
  
 
   boolean payTax(int payRate) {
 
   boolean payTax(int payRate) {
       return (payRate * hoursWorked) &gt;100;
+
       return (payRate * hoursWorked) >100;
 
   }
 
   }
  
 
This is the opposite of [[Introduce Explaining Variable]].
 
This is the opposite of [[Introduce Explaining Variable]].

Latest revision as of 03:07, 25 November 2010

Basically inline temp is removing variables that have been created to store a value returned from a query and replacing it with the actual query. This leads to much clearer code (arguable) and less code.

 boolean payTax(int payRate) {
     int wages = payRate * hoursWorked;
     return wages >100;
 }

Using inline temp

 boolean payTax(int payRate) {
     return (payRate * hoursWorked) >100;
 }

This is the opposite of Introduce Explaining Variable.

Personal tools