- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我是 Objective-C 的新手,不明白为什么我们需要使用 [super dealloc]、[super viewDidLoad] 或 [ super viewWillAppear:animated]。当我创建示例代码应用程序时,我看到类似这样的内容:
- (void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
}
- (void)viewDidAppear:(BOOL)animated
{
[super viewDidAppear:animated];
}
- (void)viewWillDisappear:(BOOL)animated
{
[super viewWillDisappear:animated];
}
- (void)viewDidDisappear:(BOOL)animated
{
[super viewDidDisappear:animated];
}
实际上 Xcode 4 总是在每个自动生成的末尾添加 super 方法 方法。为什么?
或者当我使用dealloc方法时。为什么我需要在最后添加[super dealloc]?
- (void)dealloc
{
[nameField release];
[numberField release];
[sliderLabel release];
[super dealloc];
}
附言现在在学习《iPhone 4开发入门》。并且没有找到关于此方法的任何引用:(
最佳答案
重点是,您通过继承子类来创建它们,在您的情况下,这似乎是一个自定义 ViewController,例如MyViewController 继承了 UIViewController 的数据和方法。继承意味着,你的类将拥有父类拥有的所有方法,即使你没有指定它们。例如:
@interface Foo : NSObject
- (void) doSomething;
@end
@interface Bar : Foo
@end
那么下面是有效的
Bar *myBar = [[Bar alloc] init];
[myBar doSomething];
即使您没有声明该方法,它也会在父类(super class)中找到,因此会调用父类(super class)方法。
现在假设您有以下内容:
@interface Bar : Foo
-(void) doSomething;
@end
两者的实现是
@implementation Foo
- (void) doSomething
{
NSLog(@"This is a super important method that HAS TO BE CALLED IN ANY CASE");
}
@end
@implementation Bar
-(void) doSomething
{
NSLog(@"Well this is important, but not as important as Foos implementation");
}
@end
如果没有 [super doSomething]
, super 重要的方法将永远不会被调用,因为您已经在您的自定义实现中覆盖它。所以当你做一个
Bar *myBar = [[Bar alloc] init];
[myBar doSomething];
Foo 的 doSomething 中包含的非常重要的代码不会被编译器看到,因为您自己在类中提供该方法,因此只会调用 Bar 的版本。
因此,无论何时重写方法,如果必须调用,则必须确保调用基类版本,这对于 dealloc
方法尤为重要,因为这将释放任何内存基类可能在初始化期间已获取。
关于objective-c - 为什么我需要在 iOs 中使用 [super %methodname%]?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9234024/
问题比较Java,但是我想在Android中实现: 假设有 3 个或更多类相互扩展: class A { ... int color; ... } class B extend
我知道标题听起来有点奇怪,但这正是我愿意做的。简单解释:A类是B类的子类,B类也是C类的子类>. 现在,所有这些类都包含方法m()。在我的 A 类中,这是我唯一可以访问的类,因为其他类仅在运行时可用,
我有一个 UIViewController 类 A 和 B。 A 使用以下方式加载 B:[A.view addSubView B.view]。 B 有一个带有“后退”按钮的导航栏。我想在单击时返回到
我有以下(第三方)类结构。我们将调用第三方项目 ProjectSeriously,并注意我使用 System.out.println 代替其他复杂的功能(100 行代码) . class A {
在下面的代码中,我从 Game 扩展了 MyGame。我有两个问题: 我们是否需要为所有render()、dispose()、pause()调用super方法 和 resize(w,h)?很多人都没有
例如,假设我想在调用 super.viewDidLoad() 时跳过一级。所以我希望能够做这样的事情: override func viewDidLoad() { super.super.vi
public class Faculty extends Employee { public static void main(String[] args) { new Fac
假设我有: class Superclass { //fields... methodA() {...} methodB() {...} ... } class Subclass exte
这个问题在这里已经有了答案: Why is super.super.method(); not allowed in Java? (22 个答案) 关闭 9 年前。 我怀疑我想做的事情是否可行。我有
我有一个实现 Initializable 的类。 public abstract class ExampleClass implements Initializable { public vo
我想知道,我有这个大数组,是否可以只在内存中使用一次而不是每个线程一次?以 stackoverflow 上的标签为例。他们几乎从不改变,为什么不为他们留下一个内存点呢?甚至可能将该数组永久保存在内存中
假设这三个类具有这个简单的层次结构: class A { func foo() { print("A") } } class B: A { override fu
有没有办法在 TypeScript 中调用 super.super.methodName。我想避免调用super.methodName,但我想调用二祖的methodName方法。 谢谢。 最佳答案 T
这个问题已经有答案了: When do I use super()? (11 个回答) 已关闭 7 年前。 package Geometry; public abstract class Geomet
我必须执行and()在我的实现 Predicate 的业务对象上. 出现问题的代码是 and() 行调用: Predicate predicate = new M
我有一个实现接口(interface)的抽象父类(super class): public abstract class FooMatrix implements Matrix { publi
我有四个 UIView:viewA 是 Root View ,它有 viewB 作为它的 subview 。 viewB 将 viewC 作为其 subview ,而 viewC 将 viewD 作为
有什么区别: class Child(SomeBaseClass): def __init__(self): super(Child, self).__init__() 和:
我有一个通用接口(interface) interface ListList extends List> .由于某些原因,我无法转换 ListList至 List> .有什么方法可以做到吗?为什么它不
我想调用带有两个参数的父类(super class)的构造函数,所以我调用了 super(arguments),但是编译器说: “类 Person 中的构造函数 Person 不能应用于给定类型; 要
我是一名优秀的程序员,十分优秀!