星期三, 7月 23, 2008

suggest parentheses around assignment used as truth value

原文出處
http://darkmomo.blogspot.com/2008/05/suggest-parentheses-around-assignment.html

而在C語言中,"非0為true'的哲學下",
int rxDataSize=0;
if(rxDataSize=0)會通過檢查;
但是在g++中,"非0為true'的哲學下"已不適用,必須正確指出ture or false,
即if((rxDataSize=0)) 才會通過不會有warring產生。

沒有留言: