如何在不使用 extern 的情况下访问另一个类中声明的变量?
我们可以不使用 extern 来访问 classB 中在 classA 中声明的整数类型变量吗?
对于我使用的对象 ClassA *obj1 = [[ClassA alloc]init];并将 A 类的对象访问到 B 类中。
但是,我无法使用 int 、 float 、 NSTimeInterval 来执行它们。在不使用 extern 的情况下我们该如何为他们做呢?
谢谢。
Can we access the integer type variables in classB which are declared in classA by not using extern?
For objects I used ClassA *obj1 = [[ClassA alloc]init]; And accessed the objects of classA into class B.
But, I am not able to do them with the int , float, NSTimeInterval. How can we do for them without using extern ?
Thank You.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你可以在接口中声明它,例如:
在实现文件中:
并且你可以在类 B 中使用它:
这些都是 OOP 的内容
是什么阻止你这样做?
I think you can just declear it in the interface like:
and in the implementation file:
and you can use this in class B:
These things are all OOP is about
What is preventing you to do so?