Important Note : There is a difference between
x+=a and x = x+a.
Terms of Agreement:
By using this article, you agree to the following terms...
You may use
this article in your own programs (and may compile it into a program and distribute it in compiled format for languages that allow it) freely and with no charge.
You MAY NOT redistribute this article (for example to a web site) without written permission from the original author. Failure to do so is a violation of copyright laws.
You may link to this article from another website, but ONLY if it is not wrapped in a frame.
You will abide by any additional copyright restrictions which the author may have placed in the article or article's description.
Consider the following code.
int x;
x = x+ 0.1;
// The above code generates an error that
// explicit type conversion is required.
// Right, anybody can tell this.
// Now Consider this for a difference.
int x;
x+=0.1;
//It doesn't generate an error.
// Why ?
The variable is not been combined with another int type. Since the first is using both int and double types the system assumes you made the mistake, and that's why it returns the error:) (If this comment was disrespectful, please report it.)
Add Your Feedback
Your feedback will be posted below and an email sent to
the author. Please remember that the author was kind enough to
share this with you, so any criticisms must be stated politely, or they
will be deleted. (For feedback not related to this particular article, please
click here instead.)