Holi Sale. Get upto 40% OFF on Job-oriented Training! Offer Ending in
D
H
M
S
Get Now
Flyweight Design Pattern

Flyweight Design Pattern

22 Aug 2022
Intermediate
69.8K Views
4 min read

Flyweight Design pattern falls under Structural Pattern of Gang of Four (GOF) Design Patterns in .Net. Flyweight pattern tries to reuse already existing similar kind objects by storing them and creates a new object when no matching object is found. In this article, I would like to share what is flyweight pattern and how is it work?

What is Flyweight Pattern

Flyweight pattern is used to reduce the number of objects created, to decrease memory and resource usage. As a result, it increases performance.

Flyweight pattern tries to reuse already existing similar kind objects by storing them and creates a new object when no matching object is found.

The flyweight pattern uses the concepts of intrinsic and extrinsic data.

Intrinsic data is held in the properties of the shared flyweight objects. This information is stateless and generally remains unchanged, if any change occurs it would be reflected among all of the objects that reference the flyweight.

Extrinsic data is computed on the fly means at runtime and it is held outside of a flyweight object. Hence it can be stateful.

Flyweight Pattern - UML Diagram & Implementation

The UML class diagram for the implementation of the flyweight design pattern is given below:

The classes, interfaces, and objects in the above UML class diagram are as follows:

  1. Flyweight

    This is an interface which defines the members of the flyweight objects.

  2. ConcreteFlyweight

    This is a class which Inherits from the Flyweight class.

  3. UnsharedFlyweight

    This is a class which Inherits from the Flyweight class and enables sharing of information, it is possible to create instances of concrete flyweight classes that are not shared.

  4. FlyweightFactory

    This is a class which holds the references of already created flyweight objects. When the GetFlyweight method is called from client code, these references are checked to determine if an appropriate flyweight object is already present or not. If present, it is returned. Otherwise, a new object is generated, added to the collection and returned.

C# - Implementation Code

public class FlyweightFactory
{
 private Hashtable _flyweights = new Hashtable();
 
 public Flyweight GetFlyweight(string key)
 {
 if (_flyweights.Contains(key))
 {
 return _flyweights[key] as Flyweight;
 }
 else
 {
 ConcreteFlyweight newFlyweight = new ConcreteFlyweight();
 
 // Set properties of new flyweight here.
 
 _flyweights.Add(key, newFlyweight);
 return newFlyweight;
 }
 }
}
 
public interface Flyweight
{
 void StatefulOperation(object o);
}
 
public class ConcreteFlyweight : Flyweight
{
 public void StatefulOperation(object o)
 {
 Console.WriteLine(o);
 }
}
 
public class UnsharedFlyweight : Flyweight
{
 private object _state;
 
 public void StatefulOperation(object o)
 {
 _state = o;
 Console.WriteLine(o);
 }
}

Flyweight Pattern - Example

Who is what?

The classes, interfaces, and objects in the above class diagram can be identified as follows:

  1. ShapeObjectFactory- FlyweightFactory class.

  2. IShape - Flyweight interface.

  3. Circle & Rectabgle - ConcreteFlyweight class.

C# - Sample Code

/// <summary>
/// The 'Flyweight' interface
/// </summary>
interface IShape
{
 void Print();
}

/// <summary>
/// A 'ConcreteFlyweight' class
/// </summary>
class Rectangle : IShape
{
 public void Print()
 {
 Console.WriteLine("Printing Rectangle");
 }
}

/// <summary>
/// A 'ConcreteFlyweight' class
/// </summary>
class Circle : IShape
{
 public void Print()
 {
 Console.WriteLine("Printing Circle");
 }
}

/// <summary>
/// The 'FlyweightFactory' class
/// </summary>
class ShapeObjectFactory
{
 Dictionary<string, IShape> shapes = new Dictionary<string, IShape>();

 public int TotalObjectsCreated
 {
 get { return shapes.Count; }
 }

 public IShape GetShape(string ShapeName)
 {
 IShape shape = null;
 if (shapes.ContainsKey(ShapeName))
 {
 shape = shapes[ShapeName];
 }
 else
 {
 switch (ShapeName)
 {
 case "Rectangle":
 shape = new Rectangle();
 shapes.Add("Rectangle", shape);
 break;
 case "Circle":
 shape = new Circle();
 shapes.Add("Circle", shape);
 break;
 default:
 throw new Exception("Factory cannot create the object specified");
 }
 }
 return shape;
 }
}
class Program
{
 static void Main(string[] args)
 {
 ShapeObjectFactory sof = new ShapeObjectFactory();

 IShape shape = sof.GetShape("Rectangle");
 shape.Print();
 shape = sof.GetShape("Rectangle");
 shape.Print();
 shape = sof.GetShape("Rectangle");
 shape.Print();
 
 shape = sof.GetShape("Circle");
 shape.Print();
 shape = sof.GetShape("Circle");
 shape.Print();
 shape = sof.GetShape("Circle");
 shape.Print();
 
 int NumObjs = sof.TotalObjectsCreated;
 Console.WriteLine("\nTotal No of Objects created = {0}", NumObjs);
 Console.ReadKey();
 }
}

Flyweight Pattern Demo - Output

When to use it?

  1. Flyweight is used when there is a need to create a large number of objects of almost similar nature and storage cost is high.

  2. A few shared objects can replace many unshared ones.

  3. Most of the state can be kept on disk or calculated at runtime.

Read More Articles Related to Design patterns
What do you think?

I hope you will enjoy the Flyweight Pattern while designing your software. I would like to have feedback from my blog readers. Your valuable feedback, question, or comments about this article are always welcome.

Share Article
About Author
Shailendra Chauhan (Microsoft MVP, Founder & CEO at Scholarhat by DotNetTricks)

Shailendra Chauhan is the Founder and CEO at ScholarHat by DotNetTricks which is a brand when it comes to e-Learning. He provides training and consultation over an array of technologies like Cloud, .NET, Angular, React, Node, Microservices, Containers and Mobile Apps development. He has been awarded Microsoft MVP 8th time in a row (2016-2023). He has changed many lives with his writings and unique training programs. He has a number of most sought-after books to his name which has helped job aspirants in cracking tough interviews with ease.
Accept cookies & close this