简体   繁体   English

在 Swift 中采用类型名称的泛型函数

[英]Generic function taking a type name in Swift

In C#, it's possible to call a generic method by specifying the type:在 C# 中,可以通过指定类型来调用泛型方法:

public T f<T>()
{
   return something as T
}

var x = f<string>()

Swift doesn't allow you to specialize a generic method when calling it. Swift 不允许您在调用泛型方法时对其进行专门化。 The compiler wants to rely on type inference, so this is not possible:编译器要依赖类型推断,所以这是不可能的:

func f<T>() -> T? {
    return something as T?
}

let x = f<String>() // not allowed in Swift

What I need is a way to pass a type to a function and that function returning an object of that type, using generics我需要的是一种将类型传递给函数的方法,该函数使用泛型返回该类型的对象

This works, but it's not a good fit for what I want to do:这有效,但它不适合我想做的事情:

let x = f() as String?

EDIT (CLARIFICATION)编辑(澄清)

I've probably not been very clear about what the question actually is, it's all about a simpler syntax for calling a function that returns a given type (any type).我可能不太清楚问题究竟是什么,这完全是关于调用返回给定类型(任何类型)的函数的更简单的语法。

As a simple example, let's say you have an array of Any and you create a function that returns the first element of a given type:作为一个简单的例子,假设您有一个 Any 数组,并且您创建了一个返回给定类型的第一个元素的函数:

// returns the first element in the array of that type
func findFirst<T>(array: [Any]) -> T? {
    return array.filter() { $0 is T }.first as? T
}

You can call this function like this:你可以这样调用这个函数:

let array = [something,something,something,...]

let x = findFirst(array) as String?

That's pretty simple, but what if the type returned is some protocol with a method and you want to call the method on the returned object:这很简单,但是如果返回的类型是带有方法的某种协议,并且您想在返回的对象上调用该方法,该怎么办:

(findFirst(array) as MyProtocol?)?.SomeMethodInMyProtocol()
(findFirst(array) as OtherProtocol?)?.SomeMethodInOtherProtocol()

That syntax is just awkward.这种语法很尴尬。 In C# (which is just as strongly typed as Swift), you can do this:在 C#(与 Swift 一样强类型)中,您可以这样做:

findFirst<MyProtocol>(array).SomeMethodInMyProtocol();

Sadly, that's not possible in Swift.遗憾的是,这在 Swift 中是不可能的。

So the question is: is there a way to accomplish this with a cleaner (less awkward) syntax.所以问题是:有没有办法用更简洁(不那么笨拙)的语法来实现这一点。

Unfortunately, you cannot explicitly define the type of a generic function (by using the <...> syntax on it).不幸的是,您不能显式定义泛型函数的类型(通过在其上使用<...>语法)。 However, you can provide a generic metatype ( T.Type ) as an argument to the function in order to allow Swift to infer the generic type of the function, as Roman has said .但是,您可以提供一个泛型元T.Type ( T.Type ) 作为函数的参数,以便 Swift 推断函数的泛型类型,正如Roman 所说

For your specific example, you'll want your function to look something like this:对于您的具体示例,您会希望您的函数看起来像这样:

func findFirst<T>(in array: [Any], ofType _: T.Type) -> T? {
  return array.lazy.compactMap { $0 as? T }.first
}

Here we're using compactMap(_:) in order to get a sequence of elements that were successfully cast to T , and then first to get the first element of that sequence.这里我们使用compactMap(_:)来获取成功转换为T的元素序列,然后first获取该序列的第一个元素。 We're also using lazy so that we can stop evaluating elements after finding the first.我们还使用了lazy以便我们可以在找到第一个元素后停止评估元素。

Example usage:用法示例:

protocol SomeProtocol {
  func doSomething()
}

protocol AnotherProtocol {
  func somethingElse()
}

extension String : SomeProtocol {
  func doSomething() {
    print("success:", self)
  }
}

let a: [Any] = [5, "str", 6.7]

// Outputs "success: str", as the second element is castable to SomeProtocol.
findFirst(in: a, ofType: SomeProtocol.self)?.doSomething()

// Doesn't output anything, as none of the elements conform to AnotherProtocol.
findFirst(in: a, ofType: AnotherProtocol.self)?.somethingElse()

Note that you have to use .self in order to refer to the metatype of a specific type (in this case, SomeProtocol ).请注意,您必须使用.self来引用特定类型的元类型(在本例中为SomeProtocol )。 Perhaps not a slick as the syntax you were aiming for, but I think it's about as good as you're going to get.也许不像你想要的语法那么灵巧,但我认为它和你将要得到的一样好。

Although it's worth noting in this case that the function would be better placed in an extension of Sequence :尽管在这种情况下值得注意的是,该函数最好放在Sequence的扩展中:

extension Sequence {
  func first<T>(ofType _: T.Type) -> T? {
    // Unfortunately we can't easily use lazy.compactMap { $0 as? T }.first
    // here, as LazyMapSequence doesn't have a 'first' property (we'd have to
    // get the iterator and call next(), but at that point we might as well
    // do a for loop)
    for element in self {
      if let element = element as? T {
        return element
      }
    }
    return nil
  }
}

let a: [Any] = [5, "str", 6.7]
print(a.first(ofType: String.self) as Any) // Optional("str")

What you probably need to do is create a protocol that looks something like this:您可能需要做的是创建一个如下所示的协议:

protocol SomeProtocol {
    init()
    func someProtocolMethod()
}

And then add T.Type as a parameter in your method:然后在您的方法中添加T.Type作为参数:

func f<T: SomeProtocol>(t: T.Type) -> T {
    return T()
}

Then assuming you have a type that conforms to SomeProtocol like this:然后假设您有一个符合SomeProtocol的类型,如下所示:

struct MyType: SomeProtocol {
    init() { }
    func someProtocolMethod() { }
}

You can then call your function like this:然后你可以像这样调用你的函数:

f(MyType.self).someProtocolMethod()

Like others have noted, this seems like a convoluted way to do what you want.就像其他人指出的那样,这似乎是一种做你想做的事情的复杂方式。 If you know the type, for example, you could just write:例如,如果你知道类型,你可以写:

MyType().someProtocolMethod()

There is no need for f .不需要f

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM