- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我正在学习 Swift 并使用 Xcode。我总是深入研究定义。我看到了:
public protocol GeneratorType {
typealias Element
@warn_unused_result
public mutating func next() -> Self.Element?
}
一个符合这个协议(protocol)的结构体:
public struct IndexingGenerator<Elements : Indexable> : GeneratorType, SequenceType {
public init(_ elements: Elements)
public mutating func next() -> Elements._Element?
}
我知道“Self”意味着返回一致的类型。但是“Self.Element”是什么意思?以及实现返回“Elements._Element?”要求的函数,我看不到“Elements._Element?”等于“Self.Element?”。谁能给我解释一下?告诉我更多相关信息。谢谢。
最佳答案
Self.Element
指的是任何类型实现 GeneratorType
的具体类型协议(protocol)将声明为它的 Element
类型别名。
例如,在这个斐波那契数列生成器中:
struct Fibonacci: GeneratorType {
typealias Element = Int
private var value: Int = 1
private var previous: Int = 0
mutating func next() -> Element? {
let newValue = value + previous
previous = value
value = newValue
return previous
}
}
... 你实现 GeneratorType
协议(protocol)并指出它的 Element
是什么typealias(在本例中为 Int
),这就是生成器的 next()
的类型将返回(好吧,实际上是那种类型的可选)。
不过,在实现参数化协议(protocol)时,您通常不必显式指定类型别名,因为 Swift 足够聪明,可以推断它们。例如。对于上述示例中的斐波那契数生成器,以下内容也将执行:
struct Fibonacci: GeneratorType {
private var value: Int = 1
private var previous: Int = 0
mutating func next() -> Int? {
let newValue = value + previous
previous = value
value = newValue
return previous
}
}
... Swift 从 next()
的签名中知道它返回 Int?
,那GeneratorType
实现者还必须有 next()
在他们的待办事项列表中,并且这些方法必须返回 Element?
类型。所以,Swift 只是将 2 和 2 放在一起,推断 Element?
必须与 Int?
相同,因此 Element == Int
.
关于这个:
public struct IndexingGenerator<Elements : Indexable> : GeneratorType, SequenceType {
public init(_ elements: Elements)
public mutating func next() -> Elements._Element?
}
这里我们有四件事正在进行:
IndexingGenerator
它采用名为 Elements
的参数类型.Elements
type 有一个必须实现的约束 Indexable
协议(protocol)。Indexable
访问的类型的值Elements
的界面,这是已知的 IndexingGenerator
通过点语法为 Elements._Element
.Element
的 IndexingGenerator
与 Elements._Element
相同.所以,基本上上面的声明等同于:
public struct IndexingGenerator<Elements : Indexable> : GeneratorType, SequenceType {
public typealias Element = Elements._Element
public init(_ elements: Elements)
public mutating func next() -> Element?
}
最后,如果好奇为什么_Element
而不仅仅是 Element
就像在GeneratorType
,这是他们在 open-source Swift repository 中写的内容(在 swift/stdlib/public/core/Collection.swift 下):
The declaration of
_Element
and subscript here is a trick used to break a cyclic conformance/deduction that Swift can't handle. We need something other than aCollectionType.Generator.Element
that can be used asIndexingGenerator<T>
'sElement
. Here we arrange for theCollectionType
itself to have anElement
type that's deducible from its subscript. Ideally we'd like to constrain thisElement
to be the same asCollectionType.Generator.Element
, but we have no way of expressing it today.
关于swift - 协议(protocol)中的 self ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35505001/
让我们写一个简单的类在我的脑海中解释: class SomeClass { var happyToUsed = 10 } 并创建一个对象 let someObject = SomeClass(
采用 self 的方法与采用 &self 甚至 &mut self 的方法有什么区别? 例如 impl SomeStruct { fn example1(self) { } fn ex
请观察以下代码(Win10上的python 3.6,PyCharm),函数thread0(self)作为线程成功启动,但是 thread1(self)似乎与thread0(self)不同已设置。 se
backbone.js 开始于: //Establish the root object, `window` (`self`) in the browser, or `global` on the s
做的事: self = self.init; return self; 在 Objective-C 中具有相同的效果: self.init() 快速? 例如,在这种情况下: else if([form
我查看了关于堆栈溢出的一些关于使用[weak self]和[unowned self]的问题的评论。我需要确保我理解正确。 我正在使用最新的 Xcode - Xcode 13.4,最新的 macOS
我面临在以下模型类代码中的 self.init 调用或分配给 self 之前使用 self 的错误tableview单元格项目,它发生在我尝试获取表格单元格项目的文档ID之后。 应该做什么?请推荐。
晚上好。 我对在 Swift 中转义(异步)闭包有疑问,我想知道哪种方法是解决它的最佳方法。 有一个示例函数。 func exampleFunction() { functionWithEsca
我需要在内心深处保持坚强的自我。 我知道声明[weak self]就够了外封闭仅一次。 但是guard let self = self else { return }呢? ,是否也足以为外部闭包声明一
代码 use std::{ fs::self, io::self, }; fn rmdir(path: impl AsRef) -> io::Result { fs::remo
我检查了共享相同主题的问题,但没有一个解决我遇到的这种奇怪行为: 说我有一个简单的老学校struct : struct Person { var name: String var age:
我应该解释为什么我的问题不是重复的:TypeError: can only concatenate list (not “str”) to list ...所以它不是重复的,因为该帖子处理代码中出现的
我有一个 trait,它接受一个类型参数,我想说实现这个 trait 的对象也会符合这个类型参数(使用泛型,为了 Java 的兼容性) 以下代码: trait HandleOwner[SELF
这个问题在这里已经有了答案: Why would a JavaScript variable start with a dollar sign? [duplicate] (16 个答案) 关闭 8
我总是找到一些类似的代码newPromise.promiseDispatch.apply(newPromise, message),我不明白为什么不使用newPromise.promiseDispat
我看到类似的模式 def __init__(self, x, y, z): ... self.x = x self.y = y self.z = z ... 非
mysql查询示例: SELECT a1.* FROM agreement a1 LEFT JOIN agreement a2 on a1.agreementType = a2.agreementTy
self.delegate = self; 这样做有什么问题吗?正确的做法是什么? 谢谢,尼尔。 代码: (UITextField*)initWith:(id)sender:(float)X:(flo
为什么要声明self在类中需要的结构中不需要?我不知道是否还有其他例子说明了这种情况,但在转义闭包的情况下,确实如此。如果闭包是非可选的(因此是非转义的),则不需要声明 self在两者中的任何一个。
这个问题已经有答案了: What does the ampersand (&) before `self` mean in Rust? (1 个回答) 已关闭去年。 我不清楚 self 之间有什么区别
我是一名优秀的程序员,十分优秀!