How to access class method from outside class












0















This is the simplest example:



class Foo():
def five(self):
return 5

def bar():
print Foo.five()


As you can see, I would like to call five from bar, but the problem is class methods take self as an argument.



I have solved this by feeding the instance of Foo all the way through bar, shown below:



class Foo():

def five(self):
return 5


def bar(instance_of_Foo):
print Foo.five(instance_of_Foo)


foobar = Foo()

bar(foobar)


This solution works as I can feed an instance of Foo into my call to bar(). The problem is that need to call bar() before I instantiate Foo, because the Foo object is the target of a thread.



Here is a more complicated example that demonstrates the problem:



from tkinter import *
import threading
import time

count = 0

def counter():
global count
while True:
count += 1
print count
time.sleep(1)

class GUI():
def __init__(self):
self.root = Tk()

def five(self):
global count

self.var = StringVar()
self.var.set(count)

self.label = Label(self.root, textvariable=self.var)
self.label.pack()

self.root.mainloop()

def update_gui():
global count
while True:
GUI.var = count
GUI.root.update()

threads =
t = threading.Thread(target=update_gui)
threads.append(t)
t.start()

countbot = threading.Thread(target=counter)
threads.append(countbot)
countbot.start()

foobar = GUI()
foobar.five()


The above throws this error:



Traceback (most recent call last):
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/threading.py", line 801, in __bootstrap_inner
self.run()
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/threading.py", line 754, in run
self.__target(*self.__args, **self.__kwargs)
File "/Users/Henry/documents/python/blank3.py", line 36, in update_gui
GUI.root.update()
AttributeError: class GUI has no attribute 'root'


This really surprises me, as GUI does have an attribute called root.










share|improve this question

























  • Why do you need Foo in the first place? Can five simply be a function rather than a method?

    – chepner
    Jan 2 at 20:45











  • @chepner Foo is the simplest form/example of a class to demonstrate what this question is asking, I assume.

    – Nathaniel Ford
    Jan 2 at 20:47






  • 1





    Yes, but it makes it impossible to tell if the correct solution is to make five a class method, a static method, or if something else is necessary. I think it's been simplified too much.

    – chepner
    Jan 2 at 20:48













  • Addressing the edit: You say you need to access self, but describe a scenario where self is pointless. Try to provide a Minimal, Complete, and Verifiable example that demonstrates why @classmethod/@staticmethod isn't appropriate.

    – ShadowRanger
    Jan 2 at 20:51






  • 1





    For example, looking at your code as written, I'd just skip bar and create the thread with foobar = Foo(), t = threading.Thread(target=foobar.five). Or if bar must be a thing, give it an argument to call five on, so you can do t = threading.Thread(target=bar, args=(foobar,)). You can even make the argument a default instance of Foo if needed, so bar can be called without passing an argument and it will reuse the Foo it defaults to.

    – ShadowRanger
    Jan 2 at 21:05
















0















This is the simplest example:



class Foo():
def five(self):
return 5

def bar():
print Foo.five()


As you can see, I would like to call five from bar, but the problem is class methods take self as an argument.



I have solved this by feeding the instance of Foo all the way through bar, shown below:



class Foo():

def five(self):
return 5


def bar(instance_of_Foo):
print Foo.five(instance_of_Foo)


foobar = Foo()

bar(foobar)


This solution works as I can feed an instance of Foo into my call to bar(). The problem is that need to call bar() before I instantiate Foo, because the Foo object is the target of a thread.



Here is a more complicated example that demonstrates the problem:



from tkinter import *
import threading
import time

count = 0

def counter():
global count
while True:
count += 1
print count
time.sleep(1)

class GUI():
def __init__(self):
self.root = Tk()

def five(self):
global count

self.var = StringVar()
self.var.set(count)

self.label = Label(self.root, textvariable=self.var)
self.label.pack()

self.root.mainloop()

def update_gui():
global count
while True:
GUI.var = count
GUI.root.update()

threads =
t = threading.Thread(target=update_gui)
threads.append(t)
t.start()

countbot = threading.Thread(target=counter)
threads.append(countbot)
countbot.start()

foobar = GUI()
foobar.five()


The above throws this error:



Traceback (most recent call last):
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/threading.py", line 801, in __bootstrap_inner
self.run()
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/threading.py", line 754, in run
self.__target(*self.__args, **self.__kwargs)
File "/Users/Henry/documents/python/blank3.py", line 36, in update_gui
GUI.root.update()
AttributeError: class GUI has no attribute 'root'


This really surprises me, as GUI does have an attribute called root.










share|improve this question

























  • Why do you need Foo in the first place? Can five simply be a function rather than a method?

    – chepner
    Jan 2 at 20:45











  • @chepner Foo is the simplest form/example of a class to demonstrate what this question is asking, I assume.

    – Nathaniel Ford
    Jan 2 at 20:47






  • 1





    Yes, but it makes it impossible to tell if the correct solution is to make five a class method, a static method, or if something else is necessary. I think it's been simplified too much.

    – chepner
    Jan 2 at 20:48













  • Addressing the edit: You say you need to access self, but describe a scenario where self is pointless. Try to provide a Minimal, Complete, and Verifiable example that demonstrates why @classmethod/@staticmethod isn't appropriate.

    – ShadowRanger
    Jan 2 at 20:51






  • 1





    For example, looking at your code as written, I'd just skip bar and create the thread with foobar = Foo(), t = threading.Thread(target=foobar.five). Or if bar must be a thing, give it an argument to call five on, so you can do t = threading.Thread(target=bar, args=(foobar,)). You can even make the argument a default instance of Foo if needed, so bar can be called without passing an argument and it will reuse the Foo it defaults to.

    – ShadowRanger
    Jan 2 at 21:05














0












0








0


0






This is the simplest example:



class Foo():
def five(self):
return 5

def bar():
print Foo.five()


As you can see, I would like to call five from bar, but the problem is class methods take self as an argument.



I have solved this by feeding the instance of Foo all the way through bar, shown below:



class Foo():

def five(self):
return 5


def bar(instance_of_Foo):
print Foo.five(instance_of_Foo)


foobar = Foo()

bar(foobar)


This solution works as I can feed an instance of Foo into my call to bar(). The problem is that need to call bar() before I instantiate Foo, because the Foo object is the target of a thread.



Here is a more complicated example that demonstrates the problem:



from tkinter import *
import threading
import time

count = 0

def counter():
global count
while True:
count += 1
print count
time.sleep(1)

class GUI():
def __init__(self):
self.root = Tk()

def five(self):
global count

self.var = StringVar()
self.var.set(count)

self.label = Label(self.root, textvariable=self.var)
self.label.pack()

self.root.mainloop()

def update_gui():
global count
while True:
GUI.var = count
GUI.root.update()

threads =
t = threading.Thread(target=update_gui)
threads.append(t)
t.start()

countbot = threading.Thread(target=counter)
threads.append(countbot)
countbot.start()

foobar = GUI()
foobar.five()


The above throws this error:



Traceback (most recent call last):
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/threading.py", line 801, in __bootstrap_inner
self.run()
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/threading.py", line 754, in run
self.__target(*self.__args, **self.__kwargs)
File "/Users/Henry/documents/python/blank3.py", line 36, in update_gui
GUI.root.update()
AttributeError: class GUI has no attribute 'root'


This really surprises me, as GUI does have an attribute called root.










share|improve this question
















This is the simplest example:



class Foo():
def five(self):
return 5

def bar():
print Foo.five()


As you can see, I would like to call five from bar, but the problem is class methods take self as an argument.



I have solved this by feeding the instance of Foo all the way through bar, shown below:



class Foo():

def five(self):
return 5


def bar(instance_of_Foo):
print Foo.five(instance_of_Foo)


foobar = Foo()

bar(foobar)


This solution works as I can feed an instance of Foo into my call to bar(). The problem is that need to call bar() before I instantiate Foo, because the Foo object is the target of a thread.



Here is a more complicated example that demonstrates the problem:



from tkinter import *
import threading
import time

count = 0

def counter():
global count
while True:
count += 1
print count
time.sleep(1)

class GUI():
def __init__(self):
self.root = Tk()

def five(self):
global count

self.var = StringVar()
self.var.set(count)

self.label = Label(self.root, textvariable=self.var)
self.label.pack()

self.root.mainloop()

def update_gui():
global count
while True:
GUI.var = count
GUI.root.update()

threads =
t = threading.Thread(target=update_gui)
threads.append(t)
t.start()

countbot = threading.Thread(target=counter)
threads.append(countbot)
countbot.start()

foobar = GUI()
foobar.five()


The above throws this error:



Traceback (most recent call last):
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/threading.py", line 801, in __bootstrap_inner
self.run()
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/threading.py", line 754, in run
self.__target(*self.__args, **self.__kwargs)
File "/Users/Henry/documents/python/blank3.py", line 36, in update_gui
GUI.root.update()
AttributeError: class GUI has no attribute 'root'


This really surprises me, as GUI does have an attribute called root.







python






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jan 2 at 21:56









Nathaniel Ford

13.7k155675




13.7k155675










asked Jan 2 at 20:41









hegashhegash

354111




354111













  • Why do you need Foo in the first place? Can five simply be a function rather than a method?

    – chepner
    Jan 2 at 20:45











  • @chepner Foo is the simplest form/example of a class to demonstrate what this question is asking, I assume.

    – Nathaniel Ford
    Jan 2 at 20:47






  • 1





    Yes, but it makes it impossible to tell if the correct solution is to make five a class method, a static method, or if something else is necessary. I think it's been simplified too much.

    – chepner
    Jan 2 at 20:48













  • Addressing the edit: You say you need to access self, but describe a scenario where self is pointless. Try to provide a Minimal, Complete, and Verifiable example that demonstrates why @classmethod/@staticmethod isn't appropriate.

    – ShadowRanger
    Jan 2 at 20:51






  • 1





    For example, looking at your code as written, I'd just skip bar and create the thread with foobar = Foo(), t = threading.Thread(target=foobar.five). Or if bar must be a thing, give it an argument to call five on, so you can do t = threading.Thread(target=bar, args=(foobar,)). You can even make the argument a default instance of Foo if needed, so bar can be called without passing an argument and it will reuse the Foo it defaults to.

    – ShadowRanger
    Jan 2 at 21:05



















  • Why do you need Foo in the first place? Can five simply be a function rather than a method?

    – chepner
    Jan 2 at 20:45











  • @chepner Foo is the simplest form/example of a class to demonstrate what this question is asking, I assume.

    – Nathaniel Ford
    Jan 2 at 20:47






  • 1





    Yes, but it makes it impossible to tell if the correct solution is to make five a class method, a static method, or if something else is necessary. I think it's been simplified too much.

    – chepner
    Jan 2 at 20:48













  • Addressing the edit: You say you need to access self, but describe a scenario where self is pointless. Try to provide a Minimal, Complete, and Verifiable example that demonstrates why @classmethod/@staticmethod isn't appropriate.

    – ShadowRanger
    Jan 2 at 20:51






  • 1





    For example, looking at your code as written, I'd just skip bar and create the thread with foobar = Foo(), t = threading.Thread(target=foobar.five). Or if bar must be a thing, give it an argument to call five on, so you can do t = threading.Thread(target=bar, args=(foobar,)). You can even make the argument a default instance of Foo if needed, so bar can be called without passing an argument and it will reuse the Foo it defaults to.

    – ShadowRanger
    Jan 2 at 21:05

















Why do you need Foo in the first place? Can five simply be a function rather than a method?

– chepner
Jan 2 at 20:45





Why do you need Foo in the first place? Can five simply be a function rather than a method?

– chepner
Jan 2 at 20:45













@chepner Foo is the simplest form/example of a class to demonstrate what this question is asking, I assume.

– Nathaniel Ford
Jan 2 at 20:47





@chepner Foo is the simplest form/example of a class to demonstrate what this question is asking, I assume.

– Nathaniel Ford
Jan 2 at 20:47




1




1





Yes, but it makes it impossible to tell if the correct solution is to make five a class method, a static method, or if something else is necessary. I think it's been simplified too much.

– chepner
Jan 2 at 20:48







Yes, but it makes it impossible to tell if the correct solution is to make five a class method, a static method, or if something else is necessary. I think it's been simplified too much.

– chepner
Jan 2 at 20:48















Addressing the edit: You say you need to access self, but describe a scenario where self is pointless. Try to provide a Minimal, Complete, and Verifiable example that demonstrates why @classmethod/@staticmethod isn't appropriate.

– ShadowRanger
Jan 2 at 20:51





Addressing the edit: You say you need to access self, but describe a scenario where self is pointless. Try to provide a Minimal, Complete, and Verifiable example that demonstrates why @classmethod/@staticmethod isn't appropriate.

– ShadowRanger
Jan 2 at 20:51




1




1





For example, looking at your code as written, I'd just skip bar and create the thread with foobar = Foo(), t = threading.Thread(target=foobar.five). Or if bar must be a thing, give it an argument to call five on, so you can do t = threading.Thread(target=bar, args=(foobar,)). You can even make the argument a default instance of Foo if needed, so bar can be called without passing an argument and it will reuse the Foo it defaults to.

– ShadowRanger
Jan 2 at 21:05





For example, looking at your code as written, I'd just skip bar and create the thread with foobar = Foo(), t = threading.Thread(target=foobar.five). Or if bar must be a thing, give it an argument to call five on, so you can do t = threading.Thread(target=bar, args=(foobar,)). You can even make the argument a default instance of Foo if needed, so bar can be called without passing an argument and it will reuse the Foo it defaults to.

– ShadowRanger
Jan 2 at 21:05












2 Answers
2






active

oldest

votes


















3














All you need to do is mark the function as a classmethod:



class Foo():

@classmethod
def five(cls):
return 5

def bar():
print Foo.five()





share|improve this answer



















  • 2





    In general, classmethod is for alternate constructors (where you need to know the real subclass it was called on to construct the appropriate subclass); if you're just namespacing a function that returns a constant, you may as well stick with staticmethod and avoid needing to accept (and ignore) cls.

    – ShadowRanger
    Jan 2 at 20:50











  • I have edited the question; Five is in fact a much more complicated method and needs to access self

    – hegash
    Jan 2 at 20:50





















3














First off, the simple solution, since you rely on neither class nor instance, is to make your method a static method:



class Foo():

@staticmethod
def five():
return 5

def bar():
print Foo.five()


A class method also works, but it's pointless unless there is some class specific behavior that you expect to change based on possible subclasses (where you'd derive information from knowing the subclass it was invoked with); in practice, @classmethod is really only for alternate constructors, and doesn't apply here.



Secondly, Foo does not have an attribute named self in your code example, because you never constructed an instance of Foo, so __init__ was never invoked to assign the class attribute. If you want to do something like that to make a singleton instance to work off of, don't do it in __init__; do it immediately after the class is defined, e.g.:



class Foo():
...
Foo.singleton = Foo()


Again, not particularly useful, so I'd avoid it if possible.






share|improve this answer
























  • Sorry for the confusion, I have edited my question; Five is massively over-simplified, it can't be a static method as it needs to access self

    – hegash
    Jan 2 at 20:51











  • @hegash: Can you explain why? Are you trying to implement a Java-style singleton pattern? Or do you just need a default instance to work on sometimes? When you say "I need an instance, but I don't want to use an instance", I suspect an XY problem.

    – ShadowRanger
    Jan 2 at 20:53












Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54012885%2fhow-to-access-class-method-from-outside-class%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























2 Answers
2






active

oldest

votes








2 Answers
2






active

oldest

votes









active

oldest

votes






active

oldest

votes









3














All you need to do is mark the function as a classmethod:



class Foo():

@classmethod
def five(cls):
return 5

def bar():
print Foo.five()





share|improve this answer



















  • 2





    In general, classmethod is for alternate constructors (where you need to know the real subclass it was called on to construct the appropriate subclass); if you're just namespacing a function that returns a constant, you may as well stick with staticmethod and avoid needing to accept (and ignore) cls.

    – ShadowRanger
    Jan 2 at 20:50











  • I have edited the question; Five is in fact a much more complicated method and needs to access self

    – hegash
    Jan 2 at 20:50


















3














All you need to do is mark the function as a classmethod:



class Foo():

@classmethod
def five(cls):
return 5

def bar():
print Foo.five()





share|improve this answer



















  • 2





    In general, classmethod is for alternate constructors (where you need to know the real subclass it was called on to construct the appropriate subclass); if you're just namespacing a function that returns a constant, you may as well stick with staticmethod and avoid needing to accept (and ignore) cls.

    – ShadowRanger
    Jan 2 at 20:50











  • I have edited the question; Five is in fact a much more complicated method and needs to access self

    – hegash
    Jan 2 at 20:50
















3












3








3







All you need to do is mark the function as a classmethod:



class Foo():

@classmethod
def five(cls):
return 5

def bar():
print Foo.five()





share|improve this answer













All you need to do is mark the function as a classmethod:



class Foo():

@classmethod
def five(cls):
return 5

def bar():
print Foo.five()






share|improve this answer












share|improve this answer



share|improve this answer










answered Jan 2 at 20:43









Nathaniel FordNathaniel Ford

13.7k155675




13.7k155675








  • 2





    In general, classmethod is for alternate constructors (where you need to know the real subclass it was called on to construct the appropriate subclass); if you're just namespacing a function that returns a constant, you may as well stick with staticmethod and avoid needing to accept (and ignore) cls.

    – ShadowRanger
    Jan 2 at 20:50











  • I have edited the question; Five is in fact a much more complicated method and needs to access self

    – hegash
    Jan 2 at 20:50
















  • 2





    In general, classmethod is for alternate constructors (where you need to know the real subclass it was called on to construct the appropriate subclass); if you're just namespacing a function that returns a constant, you may as well stick with staticmethod and avoid needing to accept (and ignore) cls.

    – ShadowRanger
    Jan 2 at 20:50











  • I have edited the question; Five is in fact a much more complicated method and needs to access self

    – hegash
    Jan 2 at 20:50










2




2





In general, classmethod is for alternate constructors (where you need to know the real subclass it was called on to construct the appropriate subclass); if you're just namespacing a function that returns a constant, you may as well stick with staticmethod and avoid needing to accept (and ignore) cls.

– ShadowRanger
Jan 2 at 20:50





In general, classmethod is for alternate constructors (where you need to know the real subclass it was called on to construct the appropriate subclass); if you're just namespacing a function that returns a constant, you may as well stick with staticmethod and avoid needing to accept (and ignore) cls.

– ShadowRanger
Jan 2 at 20:50













I have edited the question; Five is in fact a much more complicated method and needs to access self

– hegash
Jan 2 at 20:50







I have edited the question; Five is in fact a much more complicated method and needs to access self

– hegash
Jan 2 at 20:50















3














First off, the simple solution, since you rely on neither class nor instance, is to make your method a static method:



class Foo():

@staticmethod
def five():
return 5

def bar():
print Foo.five()


A class method also works, but it's pointless unless there is some class specific behavior that you expect to change based on possible subclasses (where you'd derive information from knowing the subclass it was invoked with); in practice, @classmethod is really only for alternate constructors, and doesn't apply here.



Secondly, Foo does not have an attribute named self in your code example, because you never constructed an instance of Foo, so __init__ was never invoked to assign the class attribute. If you want to do something like that to make a singleton instance to work off of, don't do it in __init__; do it immediately after the class is defined, e.g.:



class Foo():
...
Foo.singleton = Foo()


Again, not particularly useful, so I'd avoid it if possible.






share|improve this answer
























  • Sorry for the confusion, I have edited my question; Five is massively over-simplified, it can't be a static method as it needs to access self

    – hegash
    Jan 2 at 20:51











  • @hegash: Can you explain why? Are you trying to implement a Java-style singleton pattern? Or do you just need a default instance to work on sometimes? When you say "I need an instance, but I don't want to use an instance", I suspect an XY problem.

    – ShadowRanger
    Jan 2 at 20:53
















3














First off, the simple solution, since you rely on neither class nor instance, is to make your method a static method:



class Foo():

@staticmethod
def five():
return 5

def bar():
print Foo.five()


A class method also works, but it's pointless unless there is some class specific behavior that you expect to change based on possible subclasses (where you'd derive information from knowing the subclass it was invoked with); in practice, @classmethod is really only for alternate constructors, and doesn't apply here.



Secondly, Foo does not have an attribute named self in your code example, because you never constructed an instance of Foo, so __init__ was never invoked to assign the class attribute. If you want to do something like that to make a singleton instance to work off of, don't do it in __init__; do it immediately after the class is defined, e.g.:



class Foo():
...
Foo.singleton = Foo()


Again, not particularly useful, so I'd avoid it if possible.






share|improve this answer
























  • Sorry for the confusion, I have edited my question; Five is massively over-simplified, it can't be a static method as it needs to access self

    – hegash
    Jan 2 at 20:51











  • @hegash: Can you explain why? Are you trying to implement a Java-style singleton pattern? Or do you just need a default instance to work on sometimes? When you say "I need an instance, but I don't want to use an instance", I suspect an XY problem.

    – ShadowRanger
    Jan 2 at 20:53














3












3








3







First off, the simple solution, since you rely on neither class nor instance, is to make your method a static method:



class Foo():

@staticmethod
def five():
return 5

def bar():
print Foo.five()


A class method also works, but it's pointless unless there is some class specific behavior that you expect to change based on possible subclasses (where you'd derive information from knowing the subclass it was invoked with); in practice, @classmethod is really only for alternate constructors, and doesn't apply here.



Secondly, Foo does not have an attribute named self in your code example, because you never constructed an instance of Foo, so __init__ was never invoked to assign the class attribute. If you want to do something like that to make a singleton instance to work off of, don't do it in __init__; do it immediately after the class is defined, e.g.:



class Foo():
...
Foo.singleton = Foo()


Again, not particularly useful, so I'd avoid it if possible.






share|improve this answer













First off, the simple solution, since you rely on neither class nor instance, is to make your method a static method:



class Foo():

@staticmethod
def five():
return 5

def bar():
print Foo.five()


A class method also works, but it's pointless unless there is some class specific behavior that you expect to change based on possible subclasses (where you'd derive information from knowing the subclass it was invoked with); in practice, @classmethod is really only for alternate constructors, and doesn't apply here.



Secondly, Foo does not have an attribute named self in your code example, because you never constructed an instance of Foo, so __init__ was never invoked to assign the class attribute. If you want to do something like that to make a singleton instance to work off of, don't do it in __init__; do it immediately after the class is defined, e.g.:



class Foo():
...
Foo.singleton = Foo()


Again, not particularly useful, so I'd avoid it if possible.







share|improve this answer












share|improve this answer



share|improve this answer










answered Jan 2 at 20:44









ShadowRangerShadowRanger

63.4k660100




63.4k660100













  • Sorry for the confusion, I have edited my question; Five is massively over-simplified, it can't be a static method as it needs to access self

    – hegash
    Jan 2 at 20:51











  • @hegash: Can you explain why? Are you trying to implement a Java-style singleton pattern? Or do you just need a default instance to work on sometimes? When you say "I need an instance, but I don't want to use an instance", I suspect an XY problem.

    – ShadowRanger
    Jan 2 at 20:53



















  • Sorry for the confusion, I have edited my question; Five is massively over-simplified, it can't be a static method as it needs to access self

    – hegash
    Jan 2 at 20:51











  • @hegash: Can you explain why? Are you trying to implement a Java-style singleton pattern? Or do you just need a default instance to work on sometimes? When you say "I need an instance, but I don't want to use an instance", I suspect an XY problem.

    – ShadowRanger
    Jan 2 at 20:53

















Sorry for the confusion, I have edited my question; Five is massively over-simplified, it can't be a static method as it needs to access self

– hegash
Jan 2 at 20:51





Sorry for the confusion, I have edited my question; Five is massively over-simplified, it can't be a static method as it needs to access self

– hegash
Jan 2 at 20:51













@hegash: Can you explain why? Are you trying to implement a Java-style singleton pattern? Or do you just need a default instance to work on sometimes? When you say "I need an instance, but I don't want to use an instance", I suspect an XY problem.

– ShadowRanger
Jan 2 at 20:53





@hegash: Can you explain why? Are you trying to implement a Java-style singleton pattern? Or do you just need a default instance to work on sometimes? When you say "I need an instance, but I don't want to use an instance", I suspect an XY problem.

– ShadowRanger
Jan 2 at 20:53


















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54012885%2fhow-to-access-class-method-from-outside-class%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

MongoDB - Not Authorized To Execute Command

in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

How to fix TextFormField cause rebuild widget in Flutter