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?
|
3
|
|
|
|
|
|
Access modifiers
Static
Static classes are often used as services, you can use them like so:
|
||||
|
|
|
................................... |
||
|
|
|
|
Regarding the question of Nothing
|
||
|
|
|
|
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. |
||||
|
|
|
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. |
||
|
|
|
|
Hi, 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. |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
|||
|
|
mmm... Static means that you can access that function without having an instance of the class. You can access directly from the class definition. |
||
|
|
|
|
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. |
||
|
|
|
|
Static explained here: http://msdn.microsoft.com/en-us/library/79b3xss3.aspx |
||
|
|
|
|
Most of that is answered on this page: http://msdn.microsoft.com/en-us/library/ms173121.aspx |
||||||||
|
