What is the purpose of the statement “(void)c;”?

后端 未结 3 1787
我在风中等你
我在风中等你 2020-12-10 02:06

Sorry for the vague title, but not really sure how to phrase it. So I was looking through the innards of boost::asio (trying to track down some ridiculous delays), and I not

相关标签:
3条回答
  • 2020-12-10 02:41

    The question was probably meant to be about why it's used, and that's already been answered. I'm going to talk about what it means (which the OP probably already knows, but others may not). At least one other question has been closed as a duplicate of this one.

    In general, casting an expression to void evaluates the expression and discards the result, if any. In this case, the expression is c, the name of a variable of type task_cleanup (whatever that is).

    An expression followed by a semicolon is an expression statement. When the statement is executed, the expression is evaluated and its result is discarded.

    So this:

    (void)c;
    

    evaluates c (which, since c is just a non-volatile declared object, just fetches the value of the object), then discards the result, then discards the result again.

    Semantically, this doesn't make much sense. You might as well just write:

    c;
    

    or even omit it entirely with exactly the same effect.

    The purpose, as the other answers have already said, is to suppress a warning that the variable's value is not used. Without the cast, many compilers will warn that the result is discarded. With the cast, most compilers will assume that you're deliberately discarding the value, and will not warn about it.

    This is no guarantee; compilers can warn about anything they like. But casting to void is a sufficiently widespread convention that most compilers will not issue a warning.

    It probably would have been worthwhile to call the variable ignored rather than c, and a comment would definitely be helpful.

    0 讨论(0)
  • Maybe to avoid a compilation warning because c isn't used?

    0 讨论(0)
  • 2020-12-10 02:49

    It's probably there because it's a cross-platform method of getting the compiler not to complain about an unused variable.

    0 讨论(0)
提交回复
热议问题