Thread: GUI Tool
View Single Post
  #33  
Old 03-30-2008, 03:22 AM
cbk1994 cbk1994 is offline
the fake one
cbk1994's Avatar
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
cbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond repute
Send a message via AIM to cbk1994
Quote:
Originally Posted by Inverness View Post
Edit: Though I find the if (flag == true) more readable, and it should be optimized by the compiler.
Depends how you name variables.

I find it better to name booleans like 'bootsOn' versus 'boots'.

I think that
PHP Code:
if ( bootsOn 
is more readable then
PHP Code:
if ( bootsOn == true 
__________________
Reply With Quote