gpt4 book ai didi

swift - 如何在 Swift 中创建接受 Double 和 Int 的泛型类

转载 作者:行者123 更新时间:2023-11-30 10:19:07 24 4
gpt4 key购买 nike

我有一个 Point 类。我希望能够使用整数和 double ,如下所示:

var p1 = Point<Int>(dimensions:3)
var p2 = Point<Double>(dimension:3)

我认为像下面这样的东西可能会起作用:

  class Point<T> {
/* n dimensional point
multiline comments ...
*/
let point : [T]
init(dimensions: Int, repeatedValue:T=0.0){
self.point = Array(count: dimensions, repeatedValue: repeatedValue)

}

}

但事实并非如此。

然后我尝试了:

  class Point<T:FloatLiteralConvertible> {
/* n dimensional point
multiline comments ...
*/
let point : [T]
init(dimensions: Int, repeatedValue:T=0.0){
self.point = Array(count: dimensions, repeatedValue: repeatedValue)

}

}

但是我无法创建

 var p2 = Point<Int>(dimension:3)

我似乎无法找到解决这个问题的方法。 Swift 不允许你这样做吗?

最佳答案

IntDouble 均符合 IntegerLiteralConvertible,因此你可以将类定义为

class Point<T:IntegerLiteralConvertible> {

let point : [T]

init(dimensions: Int, repeatedValue: T = 0){
self.point = Array(count: dimensions, repeatedValue: repeatedValue)
}
}

但请注意,如果您想对这些值进行一些算术运算,您将必须定义一个自定义协议(protocol)来定义所需的操作。请参阅Swift generics: requiring addition and multiplication abilities of a type例如如何做到这一点。

关于swift - 如何在 Swift 中创建接受 Double 和 Int 的泛型类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28302650/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com