Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
547 views
in Technique[技术] by (71.8m points)

C OR '|' operator

I have an statement in a C program by someone else in this format int variable |= functioncall(parameter); I don't understand the use of OR '|' sign in that statement. Can any one please explain what does it do with the assignment operator. I am guessing bitwise OR and then assign.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

|= is the bitwise OR assignment operator. Basically, a |= b means a = a | b.

Please check this Wikipedia article for a list of all such compound assignment operators.

For here, the exact meaning of the whole statement someVar |= functioncall(parameter); is:

  1. Compute the return value of functioncall(parameter) and then,
  2. Do bitwise OR on the return value and the original value of someVar,
  3. And finally assign the result of the bitwise OR to someVar.

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...