Meaning of IOS __attribute__ ((Warn_unused_result))

Source: Internet
Author: User

Original blog, reproduced please indicate the source.

Blog.csdn.net/hello_hwc


The meaning of this keyword: If a function uses this keyword, then when the function is called, it checks or uses the return value, and a compiler warns.

Use case: When the function is encapsulated (or the SDK is written), if the use of the return value is more important, then use this keyword to remind the compiler to check whether the return value is being exploited.

Example:

-(BOOL) TestFunc: (nsinteger) num __attribute__ ((warn_unused_result)) {    return num > 0? Yes:no;}
If I call this

    [Self testfunc:10];

The compiler will warn you as follows


After checking the return value, the warning disappears

BOOL result =  [self testfunc:10];

Meaning of IOS __attribute__ ((Warn_unused_result))

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.