我正在尝试将使用 ICloneable 的深层复制方法添加到使用 xsd.exe 从 xsd 自动生成的类中。我可以让它在一个简单的级别上工作,但是一旦对象嵌套,那么克隆方法就不起作用。
我很确定我在 DirectorReturnType 类上的克隆方法有误,但我不知道如何修复它。
任何人都可以提供任何帮助吗?我附上了下面的潜艇和课程:
Dim oDirRetType As New DirectorReturnType
Dim oDirPerType As New DirectorPersonType
Dim DirPerTypeT1 As New DirectorPersonType
Dim DirPerTypeT2 As New DirectorPersonType
Dim DirRetTypeT1 As New DirectorReturnType
Dim DirRetTypeT2 As New DirectorReturnType
Dim AROT1 As New AnnualReturnOfficer
Dim AROT2 As New AnnualReturnOfficer
这按预期工作,消息“test1”,然后是“test2”:
'Works
oDirPerType.Occupation = "test1"
DirRetTypeT1.Item = oDirPerType.Clone
oDirPerType.Occupation = "test2"
DirRetTypeT2.Item = oDirPerType.Clone
DirPerTypeT1 = DirRetTypeT1.Item
DirPerTypeT2 = DirRetTypeT2.Item
MsgBox(DirPerTypeT1.Occupation)
MsgBox(DirPerTypeT2.Occupation)
如果我然后添加一个AnnualRetunOfficer 类型的额外对象AROTx,那么它会消息“Test2”,然后是“Test2”。
'Doesnt Work
oDirPerType.Occupation = "test1"
oDirRetType.Item = oDirPerType
AROT1.Item = oDirRetType.Clone
oDirPerType.Occupation = "test2"
DirRetTypeT2.Item = oDirPerType
AROT2.Item = oDirRetType.Clone
DirRetTypeT1 = AROT1.Item
DirPerTypeT1 = DirRetTypeT1.Item
DirRetTypeT2 = AROT2.Item
DirPerTypeT2 = DirRetTypeT2.Item
MsgBox(DirPerTypeT1.Occupation)
MsgBox(DirPerTypeT2.Occupation)
导演人类型:
Partial Public Class DirectorPersonType
Inherits PersonBaseType
Implements ICloneable
Private serviceAddressField As ServiceAddressType
Private dOBField As Date
Private nationalityField As String
Private occupationField As String
Private countryOfResidenceField As String
Private previousNamesField() As PreviousNameType
'''<remarks/>
Public Property ServiceAddress() As ServiceAddressType
Get
Return Me.serviceAddressField
End Get
Set(value As ServiceAddressType)
Me.serviceAddressField = value
End Set
End Property
'''<remarks/>
<System.Xml.Serialization.XmlElementAttribute(DataType:="date")> _
Public Property DOB() As Date
Get
Return Me.dOBField
End Get
Set(value As Date)
Me.dOBField = value
End Set
End Property
'''<remarks/>
Public Property Nationality() As String
Get
Return Me.nationalityField
End Get
Set(value As String)
Me.nationalityField = value
End Set
End Property
'''<remarks/>
Public Property Occupation() As String
Get
Return Me.occupationField
End Get
Set(value As String)
Me.occupationField = value
End Set
End Property
'''<remarks/>
Public Property CountryOfResidence() As String
Get
Return Me.countryOfResidenceField
End Get
Set(value As String)
Me.countryOfResidenceField = value
End Set
End Property
'''<remarks/>
<System.Xml.Serialization.XmlElementAttribute("PreviousNames")> _
Public Property PreviousNames() As PreviousNameType()
Get
Return Me.previousNamesField
End Get
Set(value As PreviousNameType())
Me.previousNamesField = value
End Set
End Property
Public Function Clone() As Object Implements System.ICloneable.Clone
Return New DirectorPersonType With {.CountryOfResidence = CountryOfResidence, .DOB = DOB, .Forename = Forename, .Nationality = Nationality, .Occupation = Occupation, .OtherForenames = OtherForenames, .PreviousNames = PreviousNames, .ServiceAddress = ServiceAddress, .Surname = Surname, .Title = Title}
End Function
End Class
导演返回类型:
Partial Public Class DirectorReturnType
Implements ICloneable
Private itemField As Object
'''<remarks/>
<System.Xml.Serialization.XmlElementAttribute("Corporate",
GetType(CorporateOfficerType)), _
System.Xml.Serialization.XmlElementAttribute("Person",
GetType(DirectorPersonType))> _
Public Property Item() As Object
Get
Return Me.itemField
End Get
Set(value As Object)
Me.itemField = Value
End Set
End Property
Public Function Clone() As Object Implements System.ICloneable.Clone
Return New DirectorReturnType With {.Item = Item}
End Function