摘要: ObjectMost generally, an object is a region of memory that has type.const Qualifier"const type object" means object's type is type, and object is const. 由内而外的解析.const qualifierint ivar = 2;typedef int *PI;// the type of pi is PI = (int*), and pi is constconst PI pi = &ivar;// pi is 阅读全文
posted @ 2011-04-20 20:09 soulnearby 阅读(130) 评论(0) 推荐(0) 编辑