gpt4 book ai didi

swift - 在 F# 中继承多个类

转载 作者:搜寻专家 更新时间:2023-11-01 06:01:43 24 4
gpt4 key购买 nike

我在 Swift 中有以下类定义:

class LandlordHome : UIViewController, UICollectionViewDelegate, UICollectionViewDataSource {

}

我试图在 F# 中创建它,但是 F# 中的继承模式只允许我像这样继承一个类:

[<Register ("LandlordHome")>]
type LandlordHome (handle:IntPtr) =
inherit UIViewController (handle)

如果我尝试像这样添加额外的类:

[<Register ("LandlordHome")>]
type LandlordHome (handle:IntPtr) =
inherit UIViewController, UICollectionViewDelegate, UICollectionViewDataSource (handle)

这会引发错误。

最佳答案

UICollectionViewDelegateUICollectionViewDataSource 不是class,而是protocol,类似于interface F#

中的

所以你的 could 应该看起来像这样(抽象代码):

[<Register ("LandlordHome")>]
type LandlordHome (handle:IntPtr) =
inherit UIViewController (handle)
interface UICollectionViewDelegate with
// implementation of UICollectionViewDelegate
interface UICollectionViewDataSource with
// implementation of UICollectionViewDataSource

关于swift - 在 F# 中继承多个类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48007214/

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