What is data abstraction and How to achieve data abstraction?
What is data abstraction and How to achieve data abstraction?
Hi, my self Ravi Vishwakarma. I have completed my studies at SPICBB Varanasi. now I completed MCA with 76% form Veer Bahadur Singh Purvanchal University Jaunpur.
SWE @ MindStick | Software Engineer | Web Developer | .Net Developer | Web Developer | Backend Engineer | .NET Core Developer
Ashutosh Kumar Verma
31-Aug-2021Data Abstraction-
In c#, data abstraction is a technique to hide the unwanted or unnecessary data from the user and shows only essential data to the users.
Achieve Data abstraction-
To achieve the data abstraction we used the abstract class with the 'abstract' keyword. We can not create instance of abstract class. To use the method of abstract class which are defined as abstract method are must be override in derived class in which abstract class is inherits. Abstract class is not use directly because it does not allow to create object.