Structure and Class assignment: by reference or by value : Class Definition « Class Module « VB.Net Tutorial

Home
VB.Net Tutorial
1.Language Basics
2.Data Type
3.Operator
4.Statements
5.Date Time
6.Class Module
7.Development
8.Collections
9.Generics
10.Attributes
11.Event
12.LINQ
13.Stream File
14.GUI
15.GUI Applications
16.Windows Presentation Foundation
17.2D Graphics
18.I18N Internationlization
19.Reflection
20.Regular Expressions
21.Security
22.Socket Network
23.Thread
24.Windows
25.XML
26.Database ADO.net
27.Design Patterns
VB.Net
VB.Net by API
VB.Net Tutorial » Class Module » Class Definition 
6.11.10.Structure and Class assignment: by reference or by value
public class Test

   
   public Shared Sub Main
        Dim cperson1 As New CPerson
        Dim cperson2 As CPerson
        cperson1.FirstName = "Alice"
        cperson2 = cperson1
        cperson2.FirstName = "Ben"
        Console.WriteLine(cperson1.FirstName & ", " & cperson2.FirstName)

        Dim sperson1 As New SPerson
        Dim sperson2 As SPerson
        sperson1.FirstName = "Alice"
        sperson2 = sperson1
        sperson2.FirstName = "Ben"
        Console.WriteLine(sperson1.FirstName & ", " & sperson2.FirstName)
   End Sub
   
End class

Public Class CPerson
    Public FirstName As String
    Public LastName As String
End Class

Public Structure SPerson
    Public FirstName As String
    Public LastName As String
End Structure
Ben, Ben
Alice, Ben
6.11.Class Definition
6.11.1.Class with a constructor to initialize its member field value
6.11.2.Define class
6.11.3.Define your own Time Class
6.11.4.Class declaration with a method that has a parameter
6.11.5.Class that contains instance variable and a property to get and set its value
6.11.6.Implement an interface
6.11.7.One class implements two interfaces 1
6.11.8.Overrides equals
6.11.9.Overrides ToString
6.11.10.Structure and Class assignment: by reference or by value
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.