码迷,mamicode.com
首页 > 其他好文 > 详细

suggest parentheses around comparison in operand of &|

时间:2018-06-19 10:32:36      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:erro   end   www   逻辑   TE   div   data   targe   tar   

error discription:

.cpp:187:25: warning: suggest parentheses around comparison in operand of ‘&’ [-Wparentheses]
         if (data_cur[j] == 255 & data_pre[j] == 255) temp.at<uchar>(i, j) = 255
                

why:

该警告希望你在&(逻辑与)表达式左右加上括号。有的时候&&(逻辑且)少写了一个&,也会产生该警告。

因为&运算符的优先级较低,低于==和!=运算符。

if ( (data_cur[j] == 255) && (data_pre[j] == 255) ) temp.at<uchar>(i, j) = 255;

RE

1.cnblogs-here;

End

suggest parentheses around comparison in operand of &|

标签:erro   end   www   逻辑   TE   div   data   targe   tar   

原文地址:https://www.cnblogs.com/happyamyhope/p/9197230.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!