View Single Post
  #3 (permalink)  
Old 07-08-2008, 06:26 PM
singampalli.simham singampalli.simham is offline
Junior Member
 
Join Date: Jul 2008
Posts: 3
Default

desing patterns is the technic or solution reocuring of problem solution.
ex:

singleterndesign pattern.
the code for singleterndesing pattern is
private singleternclass c;
static{
//code to required design
}
public static singleternclass get(){
return singleturnobject();
}
}


when we requried same object no of time we can get by using method get

SingleternClass object =get();
Reply With Quote