Out of curiosity; why is convention for pointers in C languages like this:
NSString *str = ...
Wouldn't be more appropriate to write:
NSString* str = ...
because we are defining pointer to NSString? (in Objective-C methods we do have (NSString*)parameter1 convention)
Again - I'm asking out of curiosity and to be able to better understand logic behind this... I'm not trying to reinvent the wheel or start flame war.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…