当前位置 : 主页 > 编程语言 > c语言 >

.net – 构造函数链接和空引用测试

来源:互联网 收集:自由互联 发布时间:2021-06-24
如何在调用其他构造函数之前测试空值? 说: ' class MyHoyr ' Public Sub New(ByVal myHour As MyHour) ' Can't doing it here !!!! ' If myHour Is Nothing Then Throw New ArgumentNullException("myHour") ' Constructor call should
如何在调用其他构造函数之前测试空值?

说:

' class MyHoyr '
  Public Sub New(ByVal myHour As MyHour)
    ' Can't doing it here !!!! '
    If myHour Is Nothing Then Throw New ArgumentNullException("myHour")

    ' Constructor call should be first '
    Me.New(myHour._timeSpan)

    ' Here is too late... '
  End Sub


  Private Sub New(ByVal timeSpan As TimeSpan)
    '.... '
  End Sub
我在C#中这样做的方法是在管道中使用静态方法,例如:

public MyHour(MyHour myHour) : this(GetTimeSpan(myHour))
{}

private static TimeSpan GetTimeSpan(MyHour myHour)
{
    if(myHour== null) throw new ArgumentNullException("myHour");
    return myHour._timeSpan;
}

private MyHour(TimeSpan timeSpan)
{...}

我假设你可以在VB中做一些非常相似的事情. (共享方法?)

反射器向我保证这转化为:

Public Sub New(ByVal myHour As MyHour)
    Me.New(MyHour.GetTimeSpan(myHour))
End Sub

Private Sub New(ByVal timeSpan As TimeSpan)
End Sub

Private Shared Function GetTimeSpan(ByVal myHour As MyHour) As TimeSpan
    If (myHourIs Nothing) Then
        Throw New ArgumentNullException("myHour")
    End If
    Return myHour._timeSpan
End Function
网友评论