美文网首页
字面量(Literal)

字面量(Literal)

作者: 曹来东 | 来源:发表于2019-08-05 14:06 被阅读0次
var age = 10
var isRed = false
var name = "Jack"

上面代码中的10,false,"Jack"就是字面量

  • 常见字面量的默认类型
public typealias IntegerLiteralType = Int
public typealias FloatLiteralType = Double
public typealias BooleanLiteralType = Bool
public typealias StringLiteralType = String
  • Swift自带的绝大部分类型,都支持直接通过字面量进行初始化
Bool
Int
Float
Double
String
Dictionary
Set
Optional

字面量协议

  • Swift自带类型之所以能后通过字面量初始化,是因为他们尊手里对应的协议
Bool : ExpressibleByBooleanLiteral
Int : ExpressibleByIntegerLiteral
Float ,Double : ExpressibleByIntegerLiteral ,ExpressibleByFloatLiteral
String : ExpressibleByStringLiteral
Dictionary : ExpressibleByDictionaryLiteral
Set , Array : ExpressibleByArrayLiteral
Optional : ExpressibleByNilLiteral

字面量协议应用

extension Int: ExpressibleByBooleanLiteral {
    public init(booleanLiteral value: Bool) {
        self = value ? 1 : 0
    }
}
var num: Int = true
print(num)//1

class Student: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral, ExpressibleByStringLiteral, CustomStringConvertible {
    
  
    var name: String = ""
    var score: Double = 0
    required init(floatLiteral value: Double) {
        self.score = value
    }
    required init(integerLiteral value: Int) {
        self.score = Double(value)
    }
    required init(stringLiteral value: String) {
        self.name = value
    }
    required init(unicodeScalarLiteral value: String) {
        self.name = value
    }
    required init(extendedGraphemeClusterLiteral value: String) {
        self.name = value
    }
    var description: String {
            "name = \(name), score = \(score)"
        }
}

var stu: Student = 90
print(stu)//name = ,score = 90.0
stu = 98.5
print(stu)//name = ,score = 98.5
stu = "Jack"
print(stu)//name=jack,score = 0.0
struct Point {
    var x = 0.0, y = 0.0
}
extension Point: ExpressibleByArrayLiteral,ExpressibleByDictionaryLiteral {
    init(arrayLiteral elements: Double...) {
        guard elements.count > 0 else {
            return
        }
        self.x = elements[0]
        guard elements.count > 1 else {
            return
        }
        self.y = elements[1]
    }
    
    init(dictionaryLiteral elements: (String, Double)...) {
        for (k,v) in elements {
            if k == "x" {
                self.x = v
            }else if k == "y" {
                self.y = v
            }
        }
    }
}
var p: Point = [10.5, 20.5]
print(p)//Point(x: 10.5, y: 20.5)
p = ["x" : 11, "y" : 22]
print(p)//Point(x: 11.0, y: 22.0)

相关文章

  • 字面量(Literal)

    上面代码中的10,false,"Jack"就是字面量 常见字面量的默认类型 Swift自带的绝大部分类型,都支持直...

  • Swift4 字符串截取

    Swift 字符串字面量(String literal)介绍 字符串字面量(string literal)是一段双...

  • Swift字面量(literal)

    在Swift中,可以通过字面量来初始化实例,比如:var a = 1, 就是通过字面量1初始化一个Int实例。那么...

  • ES6 迭代器 & 生成器

    一、字面量增强 如何理解Javascript中的字面量(literal)?javascript字面量 更安全的二进...

  • 字面量

    字面量(Literal) 上面代码中的10、false、"Jack"就是字面量 常见字面量的默认类型 public...

  • iOS-Swift-字面量、模式匹配

    一. 字面量(Literal) 下面代码中的10、false、"Jack"都是字面量 Swift源码规定,常见字面...

  • 《Swift从入门到精通》(二十四):字面量

    字面量(Literal) 上面代码中的10、false、"Jack"都是字面量 常见字面量的默认类型 可以通过ty...

  • 理解 JavaScript(ECMAScript 6)—— 扩展

    一、对象字面量 对象字面量(object literal)是 JavaScript 中最常见的模式之一,JSON ...

  • Flow字面量类型(Literal Types)

    字面量类型(Literal Types) Flow针对字面量值有基本数据类型,但也可以使用字面量值作为类型。下面的...

  • javascript语法笔记

    字面量、直接量 字面量、直接量(literal):就是程序中直接显示出来的数值。一般除去表达式,给变量赋值时,等号...

网友评论

      本文标题:字面量(Literal)

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