swift的类型系统及类型(内存)信息获取:接口、编译运行时、反射、内存布局...

swift是静态语言,没有在运行时保存类型的结构信息(isa、class)。

一、self、Self、Type、typeof

extension Collection where Self.Element == UInt8, Self.Index == Int

 

public static func isValueTypeOrSubtype(_ value: Any) -> Bool {

        return value is Self

    }

 

static func _transform(dict: [String: Any]) -> _ExtendCustomModelType? {

 

        var instance: Self

        if let _nsType = Self.self as? NSObject.Type {

            instance = _nsType.createInstance() as! Self

        } else {

            instance = Self.init()

        }

        _transform(dict: dict, to: &instance)

        instance.didFinishMapping()

        return instance

    }

 

 

let someInstance: SomeBaseClass = SomeSubClass()

/*                      |                |

                    compileTime       Runtime

                        |                | 

To extract, use:       .self          type(of)

 

 

  • metatype-type –>type.Type|type.Protocol
  • type-as-value –>type.self

1. In a protocol, it refers to the type that conforms to the protocol in any particular use. In Equatable, for example, it's used to require that the two values being compared are of the same type. It's something like a generic type parameter that you don't have to put between the <…> because it's deduced from the context of its use.

 

2. In a class/static method, it can be used as the return type, to indicate that the return type is the type of the class to which the method was sent, rather than the class in which the method is declared. It's similar to 'instancetype' in Obj-C.

 

 

Self相当于oc中的instance

是什么

相信大家都知道self这个关键字的具体作用,它跟OC里的self基本一样。但是对于Self来说...(WTF,这是什么东西)

当你用错Self的时候编译器会这样提示

'Self' is only available in a protocol or as the result of a method in a class

分割开来的话就是两个意思

1.Self可以用于协议(protocol)中限制相关的类型

2.Self可以用于类(Class)中来充当方法的返回值类型

 

二、内存布局

unsafeMutableRawPointer

 

 三、反射

let mirror = Mirror(reflecting: self)

 

for child in mirror.children {

    print("Property name:", child.label)

    print("Property value:", child.value)

}

 

https://www.swiftbysundell.com/posts/reflection-in-swift

 

四、内存信息获取

Looking up the elements in structs, classes, and enums is currently quite complex. Much of this complexity is due to the lack of a direct reference between these types and the field descriptors which contain the information about a type’s fields. A helper function called swift_getFieldAt searches for the appropriate field descriptor for a given type. This whole function should go away once we add that direct reference, but in the meantime it provides an interesting look at how the runtime code is able to use the language’s metadata to look up type information.

https://mjtsai.com/blog/2018/09/28/how-swifts-mirror-works/

转载于:https://www.cnblogs.com/feng9exe/p/10406668.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值