Explain the concept of abstracion and encapsulation with
one example. What is the difference between them?
Answer Posted / naveed
Abstraction refers to the act of representing essential
features without including the background details or
explanations.
Encapsulation is the procedure of covering up of data and
functions into a single unit (called class).
FOR EXAMPLES AND MORE INFO GOTO :
public class School
{
private string Schooldepartname;
public string SchoolDepartname
{
get
{
return Schooldepartname;
}
set
{
Schooldepartname =value;
}
}
}
public class Departmentmain
{
public static int Main(string[] args)
{
School d= new School();
d.SchoolDepartname="Communication";
Console.WriteLine("The Dept. Name is :
{0}",d.SchoolDepartname);
return 0;
}
}
From the above we can see the use of Encapsulation by using
properties. The property has two accessor get and set. The
get accessor returns the value of the some property field.
The set accessor sets the value of the some property field
with the contents of "value". Properties can be made read-
only. This is accomplished by having only a get accessor in
the property implementation.
Abstraction
Any function having lines of code we dont need the code of
function ie hiding detail but we know that what result we
are getting ie (showing essential )
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is overloading in oop?
Why is abstraction used?
What is abstraction encapsulation?
What is byval and byref? What are differences between them?
What is class and example?
What is methods in oop?
Explain the advantages of inheritance.
What is static modifier?
Why is object oriented programming so hard?
what is different between oops and c++
What is encapsulation in oop?
Can destructor be overloaded?
What is the oops and benefits of oops programming?
what are the ways in which a constructors can be called?
What is destructor in oop?