VB. NET Singleton Mode

Source: Internet
Author: User
Singleton mode: only one instance is created for a class.

The following Code The Singleton mode is implemented using VB. NET: Public   Class Singleton Class Singleton

Private   Shared _ Singleton As Singleton

Private   Shared _ Mutex As   New System. Threading. mutex ' The synchronization primitive can also be used for inter-process synchronization.

Private   Sub new () Sub New()

End sub

Public   Shared   Function getinstance () Function Getinstance () As Singleton

_ Mutex. waitone () ' When re-writing in a derived class, the current thread is blocked until the current system. Threading. waithandle receives the signal.

Try
If _ Singleton Is   Nothing   Then
_ Singleton =   New Singleton
End   If

Finally
_ Mutex. releasemutex () ' Release System. Threading. mutex once
End   Try

Return _ Singleton

End Function

End Class

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.