📜  什么是 xor_eq c++ 代码示例

📅  最后修改于: 2022-03-11 14:44:52.983000             🧑  作者: Mango

代码示例1
basicly same as += 
add and store the result in the same variable

but its xor_eq so it xor then store the result at the same variable

if you dont know what is xor search it you will find an awnser explaining it

the syntax is {int xor_eq int;} or the same as {int_a = int_a xor int_b;}

thanks for reading and hope that was useful :)