摆脱那些难看的临时变量(objective-c)
我有一组 CGFloats 用于动态计算高度和 y 坐标,以便在 viewDidLoad: 方法中排列视图,一旦排列这些视图,就不再需要变量了。我只是想知道是否有一种方法(甚至是一点)可以在不再需要范围内的临时变量时将其删除,类似于释放分配?
I have a set of CGFloats used to dynamically calculate height and y-coords for arranging views in my viewDidLoad: method, and once those views are arranged the vars are no longer needed. I was just wondering if there was a way (or even a point) to remove temporary variables within a scope once they're no longer needed, similar to releasing allocations?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
CGFloat
只是float
的 typedef。float
类型的局部变量完全存在于堆栈中,并在函数返回时消失,因此不需要做任何内务处理。CGFloat
is just a typedef offloat
. Local variables of typefloat
live entirely on the stack and disappear when the function returns, so there is no need to do any housekeeping.