美文网首页
Swift 语法

Swift 语法

作者: 巴依老爷的锅 | 来源:发表于2017-08-10 11:02 被阅读0次
    • 访问权限:内部可写,外部只读
    public class Person {
        public private(set) var name: String
    }
    
    • 特殊的字面常量
    Literal Type Value
    #file String The name of the file in which it appears.
    #line Int The line number on which it appears.
    #column Int The column number in which it begins.
    #function String The name of the declaration in which it appears.

    #file 相当于Objective-C中的 __FILE__
    #line 相当于Objective-C中的 __LINE__
    #column 相当于Objective-C中的 __COLUMN__
    #function 相当于Objective-C中的 __FUNCTION__

    现在我们可以优雅的打印信息了:

    print(type(of: self), #function)
    

    相关文章

      网友评论

          本文标题:Swift 语法

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