Pages

Monday, December 23, 2013

Singleton Pattern Implementation in Fortran

In software systems, there is usually a need for class with just one instance. This need arises when there are resources that are globally shared. Singleton design pattern is a creational design pattern facilitating the creation of one and only one instance of a class. It is one of the simplest design patterns yet it is the most famous and as some may claim, most useful.

Following link has an implementation of Singleton pattern using Fortran programming language.

GitHub - Single Pattern using Fortran
Fork

No comments:

Post a Comment