Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6157189
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T20:44:34+00:00 2026-05-23T20:44:34+00:00

I have a class defined as class Conditional_Singleton(object): def __init__(self, condition=None): self.initialization = some_func_of(condition)

  • 0

I have a class defined as

class Conditional_Singleton(object):
    def __init__(self, condition=None):
        self.initialization = some_func_of(condition)

Since the “initialization” step really takes a lot of time to run and the output could be huge, I would really like that the class not be recreated over and over again given the same input, but do so once the input changes. Any ideas?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T20:44:35+00:00Added an answer on May 23, 2026 at 8:44 pm
    class Conditional_Singleton(object):
        saved_insances = {}
        def __new__(cls, condition = None):
            if not condition in cls.saved_instances:
                cls.saved_instances[condition] = super(
                    Conditional_Singleton, cls).__new__(cls)
            return cls.saved_instances[condition]
        def __init__(self, condition = None):
            if not hasattr(self, 'initialization'):
                self.initialization = some_func_of(condition)
            
    

    This will save the dict of created instances in the class itself and automatically reuse them if the same condition is passed.

    Edit: Just saw your comment. You need to find a good way to hash condition for this to work, so unless it derives from a class that implements __hash__, you need to implement it yourself.

    Edit 2: Using __new__ instead of __init__ for the singleton.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a templated class defined (in part) as template <class T> MyClass {
If I have the core of a class defined in one file as public
I have a class with two methods defined in it. public class Routines {
Suppose I have an array of a objects of user defined class. Wanted to
I have the following members defined in a class that I'm trying to deserialise:
I have a private const int defined in a C# class. I want compilation
Let's say we have defined a CSS class that is being applied to various
I have defined an interface in C++, i.e. a class containing only pure virtual
I have seen some C++ classes with a destructor defined as follows: class someClass
I have a few tables that I've defined like the below examples: class TableA

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.