मुख्य सामग्रीवर वगळा

Enacpsulation in C#




Encapsulation is defined as the wrapping up of data under a single unit. It is the mechanism that binds together code and the data it manipulates. In a different way, encapsulation is a protective shield that prevents the data from being accessed by the code outside this shield.
  • Technically in encapsulation, the variables or data of a class are hidden from any other class and can be accessed only through any member function of own class in which they are declared.
  • As in encapsulation, the data in a class is hidden from other classes, so it is also known as data-hiding.
  • Encapsulation can be achieved by: Declaring all the variables in the class as private and using C# Properties in the class to set and get the values of variables.
// C# program to illustrate encapsulation
using System;
public class DemoEncap {

 // private variables declared
 // these can only be accessed by
 // public methods of class
 private String studentName;
 private int studentAge;

 // using accessors to get and
 // set the value of studentName
 public String Name
 {

  get
  {
   return studentName; 
  }

  set
  {
   studentName = value;
  }

 }

 // using accessors to get and
 // set the value of studentAge
 public int Age
 {

  get
  {
   return studentAge; 
  }

  set
  {
   studentAge = value;
  }

 }

}
// Driver Class
class GFG {

 // Main Method
 static public void Main()
 {

  // creating object
  DemoEncap obj = new DemoEncap();
  // calls set accessor of the property Name,
  // and pass "Ankita" as value of the
  // standard field 'value'
  obj.Name = "Ankita";

  // calls set accessor of the property Age,
  // and pass "21" as value of the
  // standard field 'value'
  obj.Age = 21;
  // Displaying values of the variables
  Console.WriteLine("Name: " + obj.Name);
  Console.WriteLine("Age: " + obj.Age);
 }
}
n the above program the class DemoEncap is encapsulated as the variables are declared as private. To access these private variables we are using the Name and Age accessors which contains the get and set method to retrieve and set the values of private fields. Accessors are defined as public so that they can access in other class.
Advantages of Encapsulation:
  • Data Hiding: The user will have no idea about the inner implementation of the class. It will not be visible to the user that how the class is stored values in the variables. He only knows that we are passing the values to accessors and variables are getting initialized to that value.
  • Increased Flexibility: We can make the variables of the class as read-only or write-only depending on our requirement. If we wish to make the variables as read-only then we have to only use Get Accessor in the code. If we wish to make the variables as write-only then we have to only use Set Accessor.
  • Reusability: Encapsulation also improves the re-usability and easy to change with new requirements.
  • Testing code is easy: Encapsulated code is easy to test for unit testing.

टिप्पण्या

या ब्लॉगवरील लोकप्रिय पोस्ट

WCF Windows communication foundation

WCF:Why WCF Actually, WCF is going to unify all in one : web services : enterprise service : Remoting What is WCF? WCF  stands for  Windows Communication Foundation  and is part of .NET 3.0. WCF is Microsoft platform for building distributed and interoperable applications. What is a distributed application? In simple terms a distributed application, is an application where parts of it run on 2 or more computers.  Distributed applications  are also called as  connected systems. Examples: A web application running on one machine and a web service that this application is consuming is running on another machine.     An enterprise web application may have the following tiers, and each tier may be running on a different machine 1. Presentation tier 2. Business tier   3. Data Access tier     Why build distributed applications? There are several reasons for this 1.  An enterprise application ma...

Create WCf service using 2 end points

1.  Creating a WCF service 2.  Hosting the WCF service using a console application 3.  Exposing 2 service endpoints.  4.  Creating a windows and a web Client applications.   Let's take the scenario that we discussed in  Part 2 .  We have 2 clients and we need to implement a service a for them.  1.  The first client is using a Java application to interact with our service, so for interoperability this client wants meesages to be in XML format and the protocl to be HTTP. 2.  The second client uses .NET, so for better performance this client wants messages formmated in binary over TCP protocol. In  Part 2 , To meet the requirement of the first client, we implemented a  web service  and to meet the requirement of the second client we implemented a  remoting service. In this video, we will create a single  WCF service,  and  configure 2 endpoints  to meet the requirements of both the clients. Crea...