這是一個改變圖像位值的函數。 |=
和^=
是什麼意思?在java中,「| =」和「^ =」是什麼意思?
private int setBitValue(int n,int location,int bit) {
int toggle=(int)Math.pow(2,location),bv=getBitValue(n,location);
if(bv==bit)
return n;
if(bv==0 && bit==1)
n|=toggle; // what does it do?
else if(bv==1 && bit==0)
n^=toggle; // what does it do?
return n;
}
問題是無論擺動; – ikh