Introduce Explaining Variable

From CSSEMediaWiki
(Difference between revisions)
Jump to: navigation, search
m (code block)
m (Reverted edits by Ebybymic (Talk); changed back to last version by TobiW)
 
(One intermediate revision by one user not shown)

Latest revision as of 03:08, 25 November 2010

If you have a complicated expression put them into temporary variables that explain what they do. This can help make code easier to read and understand.

if ( (platform.toUpperCase().indexOf("MAC") > -1) &&
(browser.toUpperCase().indexOf("IE") > -1) &&
wasInitialized() && resize > 0 )
{
  // do something
}
final boolean isMacOs     = platform.toUpperCase().indexOf("MAC") > -1;
final boolean isIEBrowser = browser.toUpperCase().indexOf("IE") > -1;
final boolean wasResized = resize > 0;

if (isMacOs && isIEBrowser && wasInitialized() && wasResized) { // do something }
Personal tools