CSC/ECE 517 Fall 2007/wiki1b 6 c1: Difference between revisions

From Expertiza_Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
__TOC__


== <b>Singleton Pattern</b> ==
== <b>Singleton Pattern</b> ==
Line 15: Line 14:
<b>Java</b>
<b>Java</b>


__TOC__
public class LoggerSingleton {
public class LoggerSingleton {
   private static LoggerSingleton instance = null;
   private static LoggerSingleton instance = null;
Line 30: Line 28:
   // add other attributes
   // add other attributes
}
}
__TOC__




Line 80: Line 76:
   OnlyOne.instance.reset
   OnlyOne.instance.reset
end
end




== <b>Conclusion</b> ==
== <b>Conclusion</b> ==
Java doesn’t contain singleton pattern in the language itself, although implementation for the pattern is still possible. While in Ruby the singleton pattern is in the language itself, which became possible since Ruby is a dynamic language through singleton module.
Java doesn’t contain singleton pattern in the language itself, although implementation for the pattern is still possible. While in Ruby the singleton pattern is in the language itself, which became possible since Ruby is a dynamic language through singleton module.

Revision as of 16:28, 1 October 2007

Singleton Pattern

The Singleton pattern is a design pattern used to insure the existence of a single instance of a class in the run time. It constructs the object once and returns a reference to this object every time thereafter. In a multithreading environment, special care should be taken, as it will be illustrated later in this page.


Implementation

- The constructor of this class is turned to private.
- Another public function is used to call this constructor.
- If the object is not initialized yet (object == null) it calls the constructor and returns a reference else it will just return a reference.

In multithreading environment, a synchronized command should be used so not every thread in the program can initialize its own instance of the singleton class.


Java

public class LoggerSingleton {

  private static LoggerSingleton instance = null;
  private LoggerSingleton() {
     // Exists only to defeat instantiation.
  }
  public static LoggerSingleton getInstance() {
     if(instance == null) {
        instance = new LoggerSingleton();
     }
     return instance;
  }
  // add other attributes

}


Ruby

require 'singleton'

class LoggerSingleton

 include Singleton 

end


Test singletons

Following a code to test singleton class in Java:


import junit.framework.Assert; import junit.framework.TestCase;

public class TestSingleton extends TestCase {

 private LoggerSingleton logger1 = null, logger2 = null;
 public TestSingleton(String name) {
   super(name);
 }
 public void setUp() {

logger1 = LoggerSingleton.getInstance();

       logger2 = LoggerSingleton.getInstance();
 }
 public void testUnique() {

System.out.println(logger1); System.out.println(logger2); Assert.assertEquals(true, logger1 == logger2);

 }

}

in ruby;

def test_singleton

 class << OnlyOne.instance
   def reset
     # reset state
   end
 end
 OnlyOne.instance.modify_state
 OnlyOne.instance.reset

end


Conclusion

Java doesn’t contain singleton pattern in the language itself, although implementation for the pattern is still possible. While in Ruby the singleton pattern is in the language itself, which became possible since Ruby is a dynamic language through singleton module.