punjabtechnicaluniversity.blogspot.in
Following are the three steps needed to implement singleton pattern in .NET:-
1.First create your class with static members.
Public class ClsStaticClass
Private shared objCustomer as clsCustomer
End class
This ensures that there is actually only one Customer object through out the project.
2. Second define a private constructor to your class.
Note: - defining a private constructor to class does not allow a client to create objects directly.
3.Finally provide a static method to get access to your singleton object.
Singleton pattern mainly focuses on having one and only one instance of the object running. Example a windows directory service which has multiple entries but you can only have single instance of it through out the network.
Note:- May of developers would jump to a conclusion saying using the “STATIC” keyword we can have a single instance of object. But that’s not the real case there is something more that has to be done. But please note we can not define a class as STATIC, so this will not serve our actual purpose of implementing singleton pattern.
1.First create your class with static members.
Public class ClsStaticClass
Private shared objCustomer as clsCustomer
End class
This ensures that there is actually only one Customer object through out the project.
2. Second define a private constructor to your class.
Note: - defining a private constructor to class does not allow a client to create objects directly.
3.Finally provide a static method to get access to your singleton object.
0 comments:
Post a Comment
North India Campus