Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
15
Task/Variadic-function/Objective-C/variadic-function.m
Normal file
15
Task/Variadic-function/Objective-C/variadic-function.m
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
#include <stdarg.h>
|
||||
|
||||
void logObjects(id firstObject, ...) // <-- there is always at least one arg, "nil", so this is valid, even for "empty" list
|
||||
{
|
||||
va_list args;
|
||||
va_start(args, firstObject);
|
||||
id obj;
|
||||
for (obj = firstObject; obj != nil; obj = va_arg(args, id))
|
||||
NSLog(@"%@", obj);
|
||||
va_end(args);
|
||||
}
|
||||
|
||||
// This function can be called with any number or type of objects, as long as you terminate it with "nil":
|
||||
logObjects(@"Rosetta", @"Code", @"Is", @"Awesome!", nil);
|
||||
logObjects(@4, @3, @"foo", nil);
|
||||
Loading…
Add table
Add a link
Reference in a new issue