问题
on Swift String is a struct and you could just initialize it using
var someString:String = "Hello"
how would I make another Struct initializable like String?
for example
struct StringV2 {
init()
}
class SomeClass {
let someStringV2:StringV2 = "Hello"
}
Since that's how String's code looks like.
回答1:
This is (in my opinion) neat part of the language. Yes, this is possible, thanks to the ExpressibleByStringLiteral protocol.
Unfortunately, there is some complexity to it. ExpressibleByStringLiteral inherits from ExpressibleByExtendedGraphemeClusterLiteral, which itself inherits from ExpressibleByUnicodeScalarLiteral. Thus, to conform to the first, you must conform to the other 2 above it.
This makes it possible for your struct or class to be initialized from:
- A
UnicodeScalarLiteralType(such as aUnicodeScalar, which is a single Unicode code point, e.g."A") - An
ExtendedGraphemeClusterLiteralType(such as aCharacter, which is a collection ofUnicodeScalars, such as"🐥") - A
StringLiteralType(such asString, which is a collection ofCharacters, such as"This is a string")
Here's an example implementation that just sets a String member variable:
struct StringV2: ExpressibleByStringLiteral {
let s: String
init(unicodeScalarLiteral: UnicodeScalar) {
s = String(unicodeScalarLiteral)
}
init(extendedGraphemeClusterLiteral: Character) {
s = String(extendedGraphemeClusterLiteral)
}
init(stringLiteral: String) {
s = stringLiteral
}
}
let s1: StringV2 = "This is a string" // String
print(s1.s)
let s2: StringV2 = "A" // Unicode scalar
print(s2.s)
let s3: StringV2 = "🐥" // Extended grapheme cluster
print(s3.s)
来源:https://stackoverflow.com/questions/40373776/swift-struct-initialization-making-another-struct-like-string