swift里 asas!as?区别 T.Type与动态类型

Posted feng9exe

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift里 asas!as?区别 T.Type与动态类型相关的知识,希望对你有一定的参考价值。

as 

1、编译器进行类型转换合法性检查;静态

let cell = collectionView.dequeueReusableCell(withReuseIdentifier: shoppingList[indexPath.section], for: indexPath as IndexPath)

 let k = cell as IndexPath

Cannot convert value of type ‘UICollectionViewCell‘ to type ‘IndexPath‘ in coercion

2、配合switch:类型探测

 

as!as?

类型动态转化;

任意类型转化为特定类型;类型体系检查。

 

类型作为函数参量时,属于动态类型;

类型系统和编译器密切相关。

使用类型进行实例初始化时,编译器要求类型限定必须是静态的;(相对于函数调用)。

所以作为类型传入的类型参数,用于给实例初始化时,必须做限定。

 

(type as! HMLoginModel.Type).init()

 

extension ObservableType where E == Response {

    public func mapModel<T: HandyJSON>(_ type: T.Type) -> Observable<T> {

        return flatMap { response -> Observable<T> in

            (type as! HMLoginModel.Type).init()

            return Observable.just(response.mapModel(T.self))

        }

    }

}

 

以上是关于swift里 asas!as?区别 T.Type与动态类型的主要内容,如果未能解决你的问题,请参考以下文章

Swift中的 asas!as? 三种操作符如何使用

[汇]Swift学习汇总

Swift中as as! as?的区别

swift中的T.Type是啥

swift里nsdictionary和dictionary有啥区别

Swift 中 Lazy var 和 var as-a-closure 之间的区别