当前位置 : 主页 > 手机开发 > 其它 >

swift – 为什么类型注释为Int作为Double工作而不是Double作为Int?

来源:互联网 收集:自由互联 发布时间:2021-06-12
在 Swift中,类型注释用于使整数为double let num: Double = 100 print(num) 为什么类型注释不能对double到整数执行相同的操作(错误不能将’Double’类型的值转换为指定类型’Int’)? let num: Int = 1
在 Swift中,类型注释用于使整数为double

let num: Double = 100
  print(num)

为什么类型注释不能对double到整数执行相同的操作(错误不能将’Double’类型的值转换为指定类型’Int’)?

let num: Int = 100.0
  print(num)
将Int文字转换为Double只是因为Double符合 ExpressibleByIntegerLiteral

The standard library integer and floating-point types, such as Int and Double, conform to the ExpressibleByIntegerLiteral protocol. You can initialize a variable or constant of any of these types by assigning an integer literal.

要使第二个代码起作用,Int必须符合ExpressibleByFloatLiteral.

extension Int : ExpressibleByFloatLiteral {
    public typealias FloatLiteralType = Double

    public init(floatLiteral value: Int.FloatLiteralType) {
        self.init(value)
    }
}

let a: Int = 100.0 // works

我不特别推荐这样做.这可能会导致您意外地将double值传递给期望Int的函数,而不会让编译器抱怨.

网友评论