All my college years I have been using public, and would like to know the difference between public, private, and protected?
Also what does static do as opposed to having nothing?
|
All my college years I have been using Also what does |
||||
|
|
Access modifiers
Static
Static classes are often used as services, you can use them like so:
|
|||||||||||||
|
|
Public - If you can see the class, then you can see the method Private - If you are part of the class, then you can see the method, otherwise not. Protected - Same as Private, plus all descendants can also see the method. Static (class) - Remember the distinction between "Class" and "Object" ? Forget all that. They are the same with "static"... the class is the one-and-only instance of itself. Static (method) - Whenever you use this method, it will have a frame of reference independent of the actual instance of the class it is part of. |
|||||||||||||||||||
|
|
Most of that is answered on this page: http://msdn.microsoft.com/en-us/library/ms173121.aspx |
|||||||||||
|
|
Regarding the question of Nothing
|
|||
|
|
|
Hmm. See here: Access Modifiers. In a nutshell: Public gives the method or type complete visibility from other types/classes. Private allows only the type containing the private method/variable access to the private method/variable (note that nested classes also have access to the containing classes private methods/variables). Protected is similar to private except derived classes can also access protected methods. "Nothing" is VB.NET's equivalent to null. Although if you're referring to "nothing" meaning "no access modifier", then it depends, although a very rough rule of thumb (certainly in C#) is that if you don't explicitly specify an access modifier, the method/variable declaration is usually as restricted as it can be. i.e.
is effectively the same as:
The linked MSDN article will offer a fully description when there's no access modifier explicitly specified. |
|||||
|
|
We use these keywords to specify access levels for member variables, or for member functions (methods). .Public variables, are variables that are visible to all classes. .Private variables, are variables that are visible only to the class to which they belong. .Protected variables, are variables that are visible only to the class to which they belong, and any subclasses. |
|||
|
|
|
A status of Private indicates that variables can only be accessed by objects of the same class. Protected status extends that access to include descendants of the class as well. "from the above table we can see the deference between private and protected... am think both are same ....so what the need for that two separate command" Check MSDN link for more information |
||||
|
|
|
Static explained here: http://msdn.microsoft.com/en-us/library/79b3xss3.aspx |
|||
|
|
|
Those access modifiers specify where your members are visible. You should probably read this up. Take the link given by IainMH as a starting point. Static members are one per class and not one per instance. |
|||
|
|
|
mmm... Static means that you can access that function without having an instance of the class. You can access directly from the class definition. |
|||
|
|
|
public - can be access by anyone anywhere. private - can only be accessed from with in the class it is a part of. protected - can only be accessed from with in the class or any object that inherits off of the class. Nothing is like null but in VB. Static means you have one instance of that object, method for every instance of that class. |
|||
|
|
|
I think it is related to good OOP design. If you are developer of library you want to hide inner working of your library, so that you can modify your library inner working later on. So you put your members as private and helper methods as private and only interface methods are public. Those methods that should be overwrited should be protected. |
|||
|
|
|
Careful watch your accessibility of your classes. Public and protected classes and methods are by default accessible for everyone. Also Microsoft isn't very explict in showing access modifiers (public, protected, etc.. keywords) when new classes in Visual Studio are created. So, take good care and think about your accessibility of your class because it's the door to your implementation internals. |
|||
|
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.