gpt4 book ai didi

.net - 在 VB.NET 中使用单个属性实现多个接口(interface)

转载 作者:行者123 更新时间:2023-12-04 17:35:17 28 4
gpt4 key购买 nike

启动时,我将所有 app.config 值加载到名为 ConfigValues 的类中.我的数据库只需要其中一些,所以我有一个 IDatabaseConfig只指定它需要的参数的接口(interface)。这样,当我使用构造函数注入(inject)创建数据库连接类时,我可以要求它传递任何实现 IDatabaseConfig 的东西。 .

我想做的是在 ConfigValues 上声明多个接口(interface)类并允许某些属性同时实现多个契约(Contract)。

这是一个小代码示例:

Public Interface IAppConfig
Property Server As String
Property ErrorPath As String
End Interface

Public Interface IDatabaseConfig
Property Server As String
End Interface

Public Class ConfigValues
Implements IAppConfig
Implements IDatabaseConfig

Public Property ErrorPath As String Implements IAppConfig.ErrorPath

'need different syntax - does not compile:
Public Property Server As String Implements IAppConfig.Server,
Implements IDatabaseConfig.Server

End Class

在 VB.NET 中,有没有办法指定单个属性满足多个接口(interface)的约定?

这与 SO 上的这两个问题完全相反,它们试图将相同的接口(interface)名称拆分为两个不同的属性。
  • Implementing 2 Interfaces with 'Same Name' Properties
  • How to implement an interface in VB.Net when two methods have the same name but different parameters


  • 作为一种笨拙的解决方法,我可以让两个属性都引用相同的支持属性,但我必须更改其中至少一个的属性名称,这会更改 API。

    Private _server As String
    Public Property ServerForApp As String Implements IAppConfig.Server
    Get
    Return _server
    End Get
    Set(value As String)
    _server = value
    End Set
    End Property
    Public Property ServerForDatabase As String Implements IDatabaseConfig.Server
    Get
    Return _server
    End Get
    Set(value As String)
    _server = value
    End Set
    End Property

    最佳答案

    我认为你想要的得到支持,你只是语法错误:

    Public Class ConfigValues
    Implements IAppConfig
    Implements IDatabaseConfig

    Public Property ErrorPath As String Implements IAppConfig.ErrorPath

    Public Property Server As String Implements IAppConfig.Server,
    IDatabaseConfig.Server

    End Class

    关于.net - 在 VB.NET 中使用单个属性实现多个接口(interface),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21635548/

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