gpt4 book ai didi

ios - 我很困惑类扩展中声明的任何方法是否是静态的

转载 作者:行者123 更新时间:2023-11-30 11:12:17 34 4
gpt4 key购买 nike

class Test: UIViewController{

func abc() {
print("This is ABC")
}
}

extension Test {
func def(){
print("This is DEF")
}
}

我的问题是

  1. 这两种声明的方法有什么区别?
  2. def 方法是静态方法吗?
  3. 扩展类以使用协议(protocol)会影响内存管理吗?

最佳答案

声明的两种方法有什么区别?

没有,除了两件事

  1. 一个打印 ABC ,另一个打印 DEF,它们有不同的名称
  2. 您将无法覆盖扩展程序中的方法

def 方法是静态方法吗?

不,为此,你应该说static

扩展类以使用协议(protocol)会影响内存管理吗?

没有

关于ios - 我很困惑类扩展中声明的任何方法是否是静态的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52055073/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com