how to understand this line of code?
static void * a = &a;
I saw it on the source code of AFN.
static void *AFHTTPRequestSerializerObserverContext = &AFHTTPRequestSerializerObserverContext;
The AFURLRequestSerialization.h file is used when serializing.
this style of code has been seen several times elsewhere.
the answer is
this is a static untyped pointer an and then assigning it to a with a pointer drop address is an initialization. That is, a pointer pointing to a pointer.
I don"t quite understand. I don"t think the explanation is very clear for several answers.
I"ll ask again here.