Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

what is need of singleton(state is fixed ) class if I have class with static methods (fixed behaviors )?

share|improve this question
2  
A singleton class can implement an interface. static methods don't need an extra object. – Peter Lawrey Jun 9 '11 at 10:16
Although targetting a different language, this question is 100% relevant: stackoverflow.com/questions/352348/static-classes-in-c – spender Jun 9 '11 at 10:16
In singletone all methods will be called by an instance while in other side they will be called directly by Class. – Harry Joy Jun 9 '11 at 10:18
1  

3 Answers

With the singleton it is easier to replace the instance if needed, for example, for testing.

share|improve this answer

I think one of the best arguments for using a singleton rather than a class with purely static methods is that it makes it easier to introduce multiple instances if this turns out to be required later. It is not uncommon to see applications where there is no fundamental reason to restrict a class to a single instance, but the authors did not envision any extension of their code, and found it easier to use static methods. Then when you want to extend the application later it is much harder to do so.

Being able to replace the instance for testing (or other reasons) is also a good point, and being able to implement an interface also helps with this.

share|improve this answer

Well following article is in C# but i think this also same for teh java have look to it may help you to understand

Use singletons with interfaces

You can use singletons with interfaces just like any other class. In C#, an interface is a contract, and objects that have an interface must meet all of the requirements of that interface.

Singletons can used with interface

/// <summary>
/// Stores signatures of various important methods related to the site.
/// </summary>
public interface ISiteInterface
{
};

/// <summary>
/// Skeleton of the singleton that inherits the interface.
/// </summary>
class SiteStructure : ISiteInterface
{
    // Implements all ISiteInterface methods.
    // [omitted]
}

/// <summary>
/// Here is an example class where we use a singleton with the interface.
/// </summary>
class TestClass
{
    /// <summary>
    /// Sample.
    /// </summary>
    public TestClass()
    {
    // Send singleton object to any function that can take its interface.
    SiteStructure site = SiteStructure.Instance;
    CustomMethod((ISiteInterface)site);
    }

    /// <summary>
    /// Receives a singleton that adheres to the ISiteInterface interface.
    /// </summary>
    private void CustomMethod(ISiteInterface interfaceObject)
    {
    // Use the singleton by its interface.
    }
}

Here we can use the singleton on any method that accepts the interface. We don't need to rewrite anything over and over again. These are object-oriented programming best practices. You can find more detailed examples on the interface type in the C# language here.

C# Singleton Pattern Versus Static Class

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.