Click here to Skip to main content
Click here to Skip to main content

Singleton Pattern VB.NET using Static Variable

By , 24 May 2012
 

Introduction

I have seen many implementations of the Singleton pattern. This one seems to be the most elegant for VB.NET and is as safe as simple.

Theory

Static Local Variables in VB.NET

In VB, a local variable marked as static, apart from usual local variable, continues to exist and retains its most recent value. Moreover, it is initialized only once and this operation is thread safe.

What it simply means is that while the first time property is accessed, the variable is defined and initialized with a value given. Every next call initialization and declaration is ignored and the variable is used as shared/static for this class and continues to exist for a lifetime of the class.

Singleton Pattern Implementation

Public Class Singleton

    Private Sub New()

    End Sub

    Public Shared ReadOnly Property GetInstance As Singleton
        Get
            Static Instance As Singleton = New Singleton
            Return Instance
        End Get
    End Property

End Class

Please do let me know if there are any pitfalls or if you have other ideas.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

EvgeniySu
Web Developer
Ukraine Ukraine
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionInstantiationmemberCtznkane24 May '12 - 8:33 
Shouldn't there be a Shared Sub New() call that instantiates the singleton object? Rather than doing it on each Property call.
AnswerRe: Instantiation PinmemberPIEBALDconsult25 May '12 - 8:29 
Ctznkane wrote:
Shouldn't there be a Shared Sub New() call that instantiates the singleton
object?

 
No.
 

Ctznkane wrote:
Rather than doing it on each Property call.

 
You need to read up on static variables in VB to understand it.

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130523.1 | Last Updated 24 May 2012
Article Copyright 2012 by EvgeniySu
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid