- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试创建一种在 Swift 中构建可比较对象的方法。我觉得我几乎已经掌握了我所拥有的,但它仍然不是 100% 正确。
我的目标是拥有一个 FlowController
对象,它可以创建我们的 UIViewControllers
,然后为它们提供所需的任何依赖项。
我还想做的是让这项工作尽可能松散。
我这里有一个小例子,它可以工作但并不理想。我会解释...
这里有两个对象可以用作组件...Wallet
和 User
。
class Wallet {
func topUp(amount: Int) {
print("Top up wallet with £\(amount)")
}
}
class User {
func sayHello() {
Print("Hello, world!")
}
}
然后我们定义一个 Component
枚举,其中包含每个这些的案例...
enum Component {
case Wallet
case User
}
...还有一个协议(protocol),它定义了一个方法 requiresComponents
,该方法返回一个 Components
数组。
这就是问题出现的地方。为了让“工厂对象”将组件放入 Composable
对象中,我们还需要在协议(protocol)中定义 user
和 wallet
属性.
protocol Composable {
var user: User? {get set}
var wallet: Wallet? {get set}
func requiresComponents() -> [Component]
}
为了使这些属性成为“可选”(非可选),我定义了 Composable
协议(protocol)的扩展,将这些变量定义为 nil。
extension Composable {
var user: User? {
get {return nil}
set {}
}
var wallet: Wallet? {
get {return nil}
set {}
}
}
现在我声明了我想要使其成为 Composable
的类。如您所见,它需要 User
组件并声明变量。
class SomeComposableClass: Composable {
var user: User?
func requiresComponents() -> [Component] {
return [.User]
}
}
现在 FlowController
将创建它们并将组件添加到它们。您可以在这里看到,我必须获取对象,创建它的本地 var
版本,然后返回更新后的对象。我认为这是因为它不知道将符合协议(protocol)的对象类型,因此无法更改参数。
class FlowController {
func addComponents<T: Composable>(toComposableObject object: T) -> T {
var localObject = object
for component in object.requiresComponents() {
switch component {
case .Wallet:
localObject.wallet = Wallet()
print("Wallet")
case .User:
localObject.user = User()
print("User")
}
}
return localObject
}
}
在这里我创建了对象。
let flowController = FlowController()
let composable = SomeComposableClass()
在这里我添加了组件。在生产中,这将全部在 FlowController
中完成。
flowController.addComponents(toComposableObject: composable) // prints "User" when adding the user component
compassable.user?.sayHello() // prints "Hello, world!"
如您所见,它在这里有效。用户对象已添加。
但是,正如您也可以看到的。因为我已经在协议(protocol)中声明了变量,所以可组合对象还具有对钱包组件的引用(尽管它始终为零)。
composable.wallet // nil
我觉得我已经完成了大约 95%,但我希望能够改进属性的声明方式。我想要的是最后一行...... composable.wallet
是一个编译错误。
我可以通过将属性声明移出协议(protocol)来做到这一点,但随后我遇到了无法将属性添加到符合 Composable
协议(protocol)的任何对象的问题。
如果工厂对象能够在不依赖声明的情况下添加属性,那就太棒了。或者甚至有某种守卫,说“如果这个对象有一个属性调用用户,那么将用户组件添加到它”。或者类似的东西。
如果有人知道我如何让其他 5% 的工作正常进行,那就太棒了。就像我说的,这可行,只是不是以理想的方式。
谢谢:D
嗯...作为一个快速俗气、可怕的、“没人应该这样做”的编辑。我已经将我的协议(protocol)扩展更改为这样......
extension Composable {
var user: User? {
get {fatalError("Access user")}
set {fatalError("Set user")}
}
var wallet: Wallet? {
get {fatalError("Access wallet")}
set {fatalError("Set waller")}
}
}
现在,如果我尝试访问 undefined variable ,至少程序会崩溃。但仍不理想。
好吧,我想我已经完成了我想要的。只是不确定它是否正是 Swifty。虽然,我也觉得可能是这样。寻求第二意见:)
所以,我的组件和协议(protocol)变成了这样......
// these are unchanged
class Wallet {
func topUp(amount: Int) {
print("Top up wallet with £\(amount)")
}
}
// each component gets a protocol
protocol WalletComposing {
var wallet: Wallet? {get set}
}
class User {
func sayHello() {
print("Hello, world!")
}
}
protocol UserComposing {
var user: User? {get set}
}
现在工厂方法已经改变了......
// this is the bit I'm unsure about.
// I now have to check for conformance to each protocol
// and add the components accordingly.
// does this look OK?
func addComponents(toComposableObject object: AnyObject) {
if var localObject = object as? UserComposing {
localObject.user = User()
print("User")
}
if var localObject = object as? WalletComposing {
localObject.wallet = Wallet()
print("Wallet")
}
}
这让我能够做到这一点...
class SomeComposableClass: UserComposing {
var user: User?
}
class OtherClass: UserComposing, WalletComposing {
var user: User?
var wallet: Wallet?
}
let flowController = FlowController()
let composable = SomeComposableClass()
flowController.addComponents(toComposableObject: composable)
composable.user?.sayHello()
composable.wallet?.topUp(amount: 20) // this is now a compile time error which is what I wanted :D
let other = OtherClass()
flowController.addComponents(toComposableObject: other)
other.user?.sayHello()
other.wallet?.topUp(amount: 10)
最佳答案
这似乎是应用 Interface Segregation Principle 的好例子。
具体来说,不是拥有一个主要的Composable
协议(protocol),而是拥有许多较小的协议(protocol),例如UserCompositing
和WalletCompositing
。然后,您希望组成这些不同特征的具体类型,只需列出它们的“requiredComponents”作为它们遵循的协议(protocol),即:
class FlowController : UserComposing, WalletComposing
我实际上写了一个blog post更广泛地讨论了这一点,并在 http://www.danielhall.io/a-swift-y-approach-to-dependency-injection 中给出了更详细的示例。
更新:
查看更新的问题和示例代码,我仅建议进行以下改进:
回到您最初的设计,定义一个基本的Composition
协议(protocol)可能是有意义的,该协议(protocol)要求任何符合标准的类为组合特征创建存储作为字典。像这样:
protocol Composing : class {
var traitDictionary:[String:Any] { get, set }
}
然后,使用协议(protocol)扩展将实际的可组合特征添加为计算属性,这减少了必须在每个一致的类中创建这些属性的样板。这样,任何类都可以符合任意数量的特征协议(protocol),而不必为每个协议(protocol)声明特定的变量。这是一个更完整的示例实现:
class FlowController {
static func userFor(instance:UserComposing) -> User {
return User()
}
static func walletFor(instance:WalletComposing) -> Wallet {
return Wallet()
}
}
protocol Composing : class {
var traitDictionary:[String:Any] { get, set }
}
protocol UserComposing : Composing {}
extension UserComposing {
var user:User {
get {
if let user = traitDictionary["user"] as? User {
return user
}
else {
let user = FlowController.userFor(self)
traitDictionary["user"] = user
return user
}
}
}
}
protocol WalletComposing {}
extension WalletComposing {
var wallet:Wallet {
get {
if let wallet = traitDictionary["wallet"] as? Wallet {
return wallet
}
else {
let wallet = FlowController.walletFor(self)
traitDictionary["wallet"] = wallet
return wallet
}
}
}
}
class AbstractComposing {
var traitDictionary = [String:Any]()
}
这不仅摆脱了那些必须在各处解开的烦人的选项,而且使用户和钱包的注入(inject)隐式且自动。这意味着您的类即使在它们自己的初始化程序中也已经具有这些特征的正确值,无需每次都显式地将每个新实例传递给 FlowController 的实例。
例如,您的最后一个代码片段现在将变得简单:
class SomeComposableClass: AbstractComposing, UserComposing {} // no need to declare var anymore
class OtherClass: AbstractComposing, UserComposing, WalletComposing {} //no vars here either!
let composable = SomeComposableClass() // No need to instantiate FlowController and pass in this instance
composable.user.sayHello() // No unwrapping the optional, this is guaranteed
composable.wallet.topUp(amount: 20) // this is still a compile time error which is what you wanted :D
let other = OtherClass() // No need to instantiate FlowController and pass in this instance
other.user.sayHello()
other.wallet.topUp(amount: 10) // It all "just works" ;)
关于ios - 使用协议(protocol)在 Swift 中构建可组合对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38109915/
我需要将文本放在 中在一个 Div 中,在另一个 Div 中,在另一个 Div 中。所以这是它的样子: #document Change PIN
奇怪的事情发生了。 我有一个基本的 html 代码。 html,头部, body 。(因为我收到了一些反对票,这里是完整的代码) 这是我的CSS: html { backgroun
我正在尝试将 Assets 中的一组图像加载到 UICollectionview 中存在的 ImageView 中,但每当我运行应用程序时它都会显示错误。而且也没有显示图像。 我在ViewDidLoa
我需要根据带参数的 perl 脚本的输出更改一些环境变量。在 tcsh 中,我可以使用别名命令来评估 perl 脚本的输出。 tcsh: alias setsdk 'eval `/localhome/
我使用 Windows 身份验证创建了一个新的 Blazor(服务器端)应用程序,并使用 IIS Express 运行它。它将显示一条消息“Hello Domain\User!”来自右上方的以下 Ra
这是我的方法 void login(Event event);我想知道 Kotlin 中应该如何 最佳答案 在 Kotlin 中通配符运算符是 * 。它指示编译器它是未知的,但一旦知道,就不会有其他类
看下面的代码 for story in book if story.title.length < 140 - var story
我正在尝试用 C 语言学习字符串处理。我写了一个程序,它存储了一些音乐轨道,并帮助用户检查他/她想到的歌曲是否存在于存储的轨道中。这是通过要求用户输入一串字符来完成的。然后程序使用 strstr()
我正在学习 sscanf 并遇到如下格式字符串: sscanf("%[^:]:%[^*=]%*[*=]%n",a,b,&c); 我理解 %[^:] 部分意味着扫描直到遇到 ':' 并将其分配给 a。:
def char_check(x,y): if (str(x) in y or x.find(y) > -1) or (str(y) in x or y.find(x) > -1):
我有一种情况,我想将文本文件中的现有行包含到一个新 block 中。 line 1 line 2 line in block line 3 line 4 应该变成 line 1 line 2 line
我有一个新项目,我正在尝试设置 Django 调试工具栏。首先,我尝试了快速设置,它只涉及将 'debug_toolbar' 添加到我的已安装应用程序列表中。有了这个,当我转到我的根 URL 时,调试
在 Matlab 中,如果我有一个函数 f,例如签名是 f(a,b,c),我可以创建一个只有一个变量 b 的函数,它将使用固定的 a=a1 和 c=c1 调用 f: g = @(b) f(a1, b,
我不明白为什么 ForEach 中的元素之间有多余的垂直间距在 VStack 里面在 ScrollView 里面使用 GeometryReader 时渲染自定义水平分隔线。 Scrol
我想知道,是否有关于何时使用 session 和 cookie 的指南或最佳实践? 什么应该和什么不应该存储在其中?谢谢! 最佳答案 这些文档很好地了解了 session cookie 的安全问题以及
我在 scipy/numpy 中有一个 Nx3 矩阵,我想用它制作一个 3 维条形图,其中 X 轴和 Y 轴由矩阵的第一列和第二列的值、高度确定每个条形的 是矩阵中的第三列,条形的数量由 N 确定。
假设我用两种不同的方式初始化信号量 sem_init(&randomsem,0,1) sem_init(&randomsem,0,0) 现在, sem_wait(&randomsem) 在这两种情况下
我怀疑该值如何存储在“WORD”中,因为 PStr 包含实际输出。? 既然Pstr中存储的是小写到大写的字母,那么在printf中如何将其给出为“WORD”。有人可以吗?解释一下? #include
我有一个 3x3 数组: var my_array = [[0,1,2], [3,4,5], [6,7,8]]; 并想获得它的第一个 2
我意识到您可以使用如下方式轻松检查焦点: var hasFocus = true; $(window).blur(function(){ hasFocus = false; }); $(win
我是一名优秀的程序员,十分优秀!