Object-C有私有方法吗?私有变量呢?objective-c 类里面的方法只有两种, 静态方法和实例方法. 这似乎就不是完整的面向对象了,按照OO的原则就是一个对象只暴露有用的东西. 如果没有了私有方法的话, 对于一些小范围的代码重用就不那么顺手了. 在类里面声名一个私有方法interface Controller : NSObject NSString *something; + (void)thisIsAStaticMethod; (void)thisIsAnInstanceMethod;endinterface Controller (private) -(void)thisIsAPrivateMethod;endprivate可以用来修饰私有变量在ObjectiveC中,所有实例变量默认都是私有的,所有实例方法默认都是公有的关键字const什么含义const意味着”只读”,下面的声明都是什么意思?const int a;int const a;const int *a;int * const a;int const * a const;