#define MyLog(msg...) MyLogWith(__func__,##msg);
MyLog(@"I do not know...");
What do ... and ## mean in this definition? Is there a special meaning to them being combined with msg: msg.. or ##msg?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
msg...means to take any amount of arguments.,##msgmeans paste the arguments, and erase the preceding,if the argument count is0msghas no special meaning, its just the name for the arguments, e.g.will do the same