美文网首页
[swift 进阶]读书笔记-第七章:字符串 C7P7 Cus

[swift 进阶]读书笔记-第七章:字符串 C7P7 Cus

作者: liaoworkinn | 来源:发表于2019-03-02 16:23 被阅读1次

    字符串

    7.7 CustomStringConvertible 和 CustomDebugStringConvertible

    本小节内容基本简单,就是讲了上面这两个简单协议的用法

    这两个协议主要就是类似于Objective-C中的重写description方法

    继承协议 实现descriptiondebugDescription 属性 即可打印出想要的数据内容

    具体使用见下Demo

      struct Person:CustomStringConvertible,CustomDebugStringConvertible {
        var age: Int
        var name: String
        var job: String
    
        var description: String {
            return "\(age) \(name) \(job)"
        }
    
        var debugDescription: String {
            return "\(name) \(age) \(job)"
        }
      }
    
      let meetings = Person(age: 18, name: "liaoWorking", job: "iOSDeveloper")
      print(meetings)
      /**
       *  "24 liaoWorking iOSDeveloper\n"
       */
      debugPrint(meetings)
      /**
       *  "liaoWorking 24 iOSDeveloper\n"
       */
    
    知识点1: 书中建议任何稍微复杂一些的类型都应该实现 CustomStringConvertible协议

    文章源文件地址,大家如果有更好的想法和观点欢迎交流

    相关文章

      网友评论

          本文标题:[swift 进阶]读书笔记-第七章:字符串 C7P7 Cus

          本文链接:https://www.haomeiwen.com/subject/qkzvyqtx.html