gpt4 book ai didi

vb.net - 为什么从同一类中的共享函数调用时无法访问重载的私有(private)共享函数

转载 作者:行者123 更新时间:2023-12-01 10:54:43 24 4
gpt4 key购买 nike

遇到了一些我觉得很有趣的事情,希望得到解释。

编辑

这个问题并不意味着应该用什么来解决它来回答。我知道修复方法。我想要解释为什么编译器会做它所做的事情。前任。在这种情况下是否不考虑私有(private)函数?

问题

我有一个类有一个名为 WhatIs 的公共(public)共享(静态)函数。 WhatIs 采用具有对象集合的参数。代码遍历此集合并调用 WhatIs 函数,该函数的参数匹配对象的类型。

执行时,将抛出 InvalidCastException 异常,因为执行试图调用启动它的 WhatIs 函数,而不是提供的类型的函数。

这很奇怪,但让我感到奇怪的是,当您将私有(private)共享功能更改为公共(public)共享时,它就可以正常工作了。

更奇怪的是,当您显式转换对象时,即使该函数是私有(private)的,它也能正常工作。

什么?!有人请解释

代码

胆量:

Public Class House
Public Property Furniture As ICollection(Of Object)

Public Sub New()
Furniture = New List(Of Object)
End Sub
End Class

Public Class Chair
Public Property IsComfortable As Boolean
End Class

Public Class Table
Public Seats As Integer
End Class

Public Class HouseExaminer
Public Shared Function WhatIs(thing As House) As String
Dim isA As String = "a house that contains "

For Each item In thing.Furniture
isA &= WhatIs(item)
Next

Return isA
End Function

Private Shared Function WhatIs(thing As Chair) As String
Return "a " & If(thing.IsComfortable, "comfortable", "uncomfortable") & " chair "
End Function

Private Shared Function WhatIs(thing As Table) As String
Return "a table that seats " & thing.Seats & " iguanas"
End Function
End Class

测试

Imports System.Text
Imports Microsoft.VisualStudio.TestTools.UnitTesting
Imports stuff

<TestClass()>
Public Class HouseExaminerTests

<TestMethod()>
Public Sub TestWhatIs()
Dim given As New House()
Dim expected As String
Dim actual As String

given.Furniture.Add(New Chair() With {.IsComfortable = True})
given.Furniture.Add(New Table() With {.Seats = 4})

expected = "a house that contains a comfortable chair a table that seats 4 iguanas"
actual = HouseExaminer.WhatIs(given)

Assert.Equals(expected, actual)
End Sub
End Class

结果

调试测试,你会得到这个:无效的CastException方法调用失败,因为无法使用这些参数调用“公共(public)共享函数 WhatIs(thing As stuff.House) As String”:

参数匹配参数“thing”无法从“Chair”转换为“House”。

这些更改使其有效,但为什么呢?!

将它们公开

将 HouseExaminer 中的私有(private)共享函数更改为公共(public),重新运行测试。扰流板,它有效

显式转换对象

将它们改回私有(private)然后替换

isA &= WhatIs(item)

If TypeOf item Is Chair Then isA &= WhatIs(CType(item, Chair))
If TypeOf item Is Table Then isA &= WhatIs(CType(item, Table))

重新运行测试,你知道什么,它有效

最佳答案

首先,您似乎启用了隐式转换。这就是问题的开始。其次,您将 Furniture 定义为 List(of Object)。您对 WhatIs 的第一次调用成功。编译器在遍历 thing.Furniture 时,在传递 it 视为简单 Object 的内容时,会做出最好的猜测以使用哪个重载,并确定最合适的 WhatIs 方法的公共(public)静态版本。然后它尝试将 Object 隐式转换为 House,但不可避免地失败了。

为什么转换有效?因为它消除了确定要使用哪个重载的猜测工作。

这个故事的寓意是:不要让编译器猜测。隐式转换会导致棘手的错误。

编辑:为什么编译器看不到其他重载函数?

编译器必须确定要在编译时 使用的正确重载。它不会等到运行时才确定要使用哪个重载,因此无法通过检查对象的类型来确定最合适的重载。

由于编译器只知道 furniture 是一个 List(Of Object),从技术上讲(启用隐式转换)所有三个重载都被认为是“适当的, "但编译器必须选择一个。它对可能的过载候选者进行排序,并在 private 版本之前选择 public 版本。

关于vb.net - 为什么从同一类中的共享函数调用时无法访问重载的私有(private)共享函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15932265/

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