While studying C# in ASP.net I have trouble understanding several classes. In which scenario should I use the following classes private,public,protected,abstract,static,sealed ?
It would be better if someone can explain these with easy examples.
|
While studying C# in ASP.net I have trouble understanding several classes. In which scenario should I use the following classes It would be better if someone can explain these with easy examples.
| |||||||||||||||
feedback
|
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.
|
Those are not classes.
An A I suggest you start with "Getting Started with Visual C#. This is a very basic question. | |||||||
feedback
|
|
The A Using the | |||||||||
feedback
|
|
| ||||
|
feedback
|
|
I down't can comment your question but i have an little adition but importan information for you. access modifiers are only an compiler-feature. every .net-programm can ignore this by using reflection and can access your private flaged classes and methodes. An exampel:
Source: Reflection with Private Members | |||||
feedback
|
|
What you have there are modifiers, not types of classes.
Before looking into the other modifiers you have listed, I would suggest attempting to get a grasp on Object Oriented Programming. Here is a link full of good resources you can review. | |||
|
feedback
|
|
private,public,protected are the access modfier supported by c# language : here is the msdn link for more detail Access Modifiers | |||
|
feedback
|
|
The first three are access modifiers, they can be applied to types and members. private means something can only be accessed from within its declaring type. protected means something can be accessed by inheritors of the declaring type, or by something in the type itself. public means something can be accessed from anywhere that has a valid reference to the declaring type. The rest can also be applied to both types and members. abstract (on a member) means the member has no implementation (the implementation must be provided by inheritors of the type) or (on a type) that the type cannot be instantiated (only inherited). static (on a member) means that the member is shared statically by all callers, or (on a type) that the type can only contain static members and therefore cannot be instantiated (i.e. it doesn't have any instance members and therefore cannot serve any instances of itself). sealed (on an inherited virtual or abstract member) means that inheritors of the type cannot override the member, or (on a type) that the type cannot be inherited from. There are a couple of other modifiers you should be aware of: internal is another access modifier that means that something can be accessed by anything within the same assembly (or project) as the declaring type. Also, virtual (on a member) means that the member may optionally be overridden by an inheritor of the type, but supplies its own default implementation. partial (on a member) allows you to provide the signature of a member in one file, and the implementation in another, or (on a type) allows you to split the definition of a type across multiple code files. | |||
|
feedback
|
|
Applied to methods,
The first one can be called like this:
The second one only like this:
Applied to classes, The | |||
|
feedback
|