How can I make a class variable accessible from different object instances of the same class?
You may have the need to be able to access the same instance of a class variable from multiple object instances of that class. This is known as a "class" scope variable. Here I'll explain how it's done.
There is an important destinction between the scopes of member variables in a class. Under normal circumstances, the variables you put into your class are known as "instance" variables. You can modify any of these variables and make them "class" scope by putting the word static [C#] or Shared [VB] after the first scope modifier keyword.
Public Class MyClass
Public Shared AStaticStr As String
End Class
Being class scope means that from the time the class is loaded into the runtime, that variables is alive. Any instance of that class can access that variable (assuming it's either Public or Protected, but not Private).
Dim objMyClass1 As New MyClass
Dim objMyClass2 As New MyClass
objMyClass1.AStaticStr = "Hello"
Print objMyClass2.AStaticStr 'Prints "Hello"
objMyClass2.AStaticStr = "World"
Print objMyClass1.AStaticStr 'Prints "World"
If you inherit from that class you'll be able to see the same instance of that variable from within any instance of your derived classes.
Public Class MySubClass
Inherits MyClass
Public Function AMethod() As String
Return AStaticStr
End Sub
End Class
You can make any member (variables, properties, methods, etc) of a class Shared but you have to remember that Shared methods can only access other Shared members of the class. They can not access instance scope members. However, any instance scope member can access Shared members.
Where to Next?
Wonder where to go next?
You can read existing comments below or you can post a comment yourself on this article.
Doc ID |
272 |
Full URL |
https://imar.spaanjaars.com/272/how-can-i-make-a-class-variable-accessible-from-different-object-instances-of-the-same-class |
Short cut |
https://imar.spaanjaars.com/272/ |
Written by |
Imar Spaanjaars |
Date Posted |
04/14/2004 22:52 |
Date Last Reviewed |
08/06/2006 16:54 |
Talk Back! Comment on Imar.Spaanjaars.Com
I am interested in what you have to say about this article. Feel free to post any comments, remarks or questions you may have about this article. The Talk Back feature is not meant for technical questions that are not directly related to this article. So, a post like "Hey, can you tell me how I can upload files to a MySQL database in PHP?" is likely to be removed. Also spam and unrealistic job offers will be deleted immediately.
When you post a comment, you have to provide your name and the comment. Your e-mail address is optional and you only need to provide it if you want me to contact you. It will not be displayed along with your comment. I got sick and tired of the comment spam I was receiving, so I have protected this page with a simple calculation exercise. This means that if you want to leave a comment, you'll need to complete the calculation before you hit the Post Comment button.
If you want to object to a comment made by another visitor, be sure to contact me and I'll look into it ASAP. Don't forget to mention the page link, or the Doc ID of the document.
Thank you for your contribution. Your comments have been submitted. Once I have approved them, they'll show up here for everyone to see.
Whoooops!!
Unfortunately, something went wrong and your message or comments have not been submitted successfully.
There's a fair chance things broke down because you tried to post something that looks like HTML. Things that look like HTML include (X)HTML, obviously, XML, ASP.NET markup and c# generics syntax as all of them use the < and > characters.
If that's the case, try altering your message and remove anything that looks like an angled bracket. You can replace them with [ and ] for example so you can still make it look like HTML to some extend.
If, on the other hand, you were trying to spam this web site, I am pretty glad I caught you in the act and stopped you from doing so ;-)
Also, please
don't use links in your posts; I had to block them to filter out most of the junk mail I am receiving.