Objective-c variable parameters

Source: Internet
Author: User

It is easy to find that the Cocoa Foundation provides some variable parameter methods, such:

NSLog (NSString * format ,...)

 

In actual programming practices, we also need to implement variable parameters. In Objc, it relies on the native C library for implementation.

See the example:

 

-() DoLog :( NSString * NSMutableArray * arr = NSString * (arg = va_arg (argList, NSString * (NSString * str NSLog (} View Code

 

The following describes the C methods used in the code snippet;

1. va_list argList: defines a pointer to a variable number of parameter lists;

2. va_start (ap, param) param is a fixed parameter before the first optional parameter. va_start points the pointer to the first optional parameter;

3. va_arg (ap, type): return the parameter specified by the pointer ap in the parameter list. The return type is type and the pointer ap points to the next parameter in the parameter list;

4. va_end (ap) clears the parameter list. The reset parameter ap is invalid.

Related Article

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.