Split Temporary Variable
From CSSEMediaWiki
(Difference between revisions)
m (Reverted edits by Ebybymic (Talk); changed back to last version by Matthew Harward) |
|||
Line 1: | Line 1: | ||
− | + | This is when you have create a temporary variable that you use all the way through a method.<br> | |
− | + | foo() {<br> | |
− | + | int temp = 2 * (height + width);<br> | |
− | + | System.out.print(temp);<br> | |
− | + | temp = height * width;<br> | |
− | + | System.out.print(temp);<br> | |
− | + | }<br> | |
− | + | <br> | |
− | This is when you have create a temporary variable that you use all the way through a method. | + | The variable has two different meanings at various stages of the method. Give each variable a descriptive name making it easier to understand the code.<br> |
− | foo() { | + | <br> |
− | int temp = 2 * (height + width); | + | foo() {<br> |
− | System.out.print(temp); | + | int perimeter = 2 * (height + width);<br> |
− | temp = height * width; | + | System.out.print(perimeter);<br> |
− | System.out.print(temp); | + | int area = height * width;<br> |
− | } | + | System.out.print(area);<br> |
− | + | ||
− | The variable has two different meanings at various stages of the method. Give each variable a descriptive name making it easier to understand the code. | + | |
− | + | ||
− | foo() { | + | |
− | int perimeter = 2 * (height + width); | + | |
− | System.out.print(perimeter); | + | |
− | int area = height * width; | + | |
− | System.out.print(area); | + | |
} | } |
Latest revision as of 03:11, 25 November 2010
This is when you have create a temporary variable that you use all the way through a method.
foo() {
int temp = 2 * (height + width);
System.out.print(temp);
temp = height * width;
System.out.print(temp);
}
The variable has two different meanings at various stages of the method. Give each variable a descriptive name making it easier to understand the code.
foo() {
int perimeter = 2 * (height + width);
System.out.print(perimeter);
int area = height * width;
System.out.print(area);
}