Tagged Questions
The singleton-methods tag has no wiki summary.
5
votes
2answers
2k views
Is it possible to define a Ruby singleton method using a block?
So, I want to define a singleton method for an object, but I want to do it using a closure.
For example,
def define_say(obj, msg)
def obj.say
puts msg
end
end
o = Object.new
define_say o, ...
2
votes
3answers
109 views
Ruby singleton class
I am unsure about the difference between this.
def String.hello
puts "hello there"
end
and
x = Person.new
def x.hello
puts "hello there"
end
From my understanding the second ...
1
vote
1answer
209 views
Objective-C Singleton problem. Object recognized in one class but not another
My problem is that I can access methods and attributes from the sharedInstance Singleton in one class but I cannot in another.
For example, the code below works and is recognized by X-code. Works ...
1
vote
3answers
167 views
Help understanding class method returning singleton
Can someone please help me understand what the following method is doing?
+ (Game *) shared
{
static Game *sharedSingleton;
@synchronized(self)
{
if (!sharedSingleton)
{
...
0
votes
1answer
33 views
Singleton method error from bind when called with the same metaclass
I'm writing aspect-ish code more or less lifted from the chosen solution for this question that looks like the following:
class Module
def add_logging klass, *method_names
method_names.each do ...
0
votes
2answers
28 views
Coin Flip Statistics Program - undefined method
I'm trying to write a coin flip program where I can analyze the percentage of Heads flipped. I've gotten coin flip to work, just not the actually analyzing yet.
The problem is when I created a Coin ...
0
votes
2answers
52 views
Preventing a function from running multiple times in JavaScript
I'm working with some code that does this:
var _init = false;
this.init = function(){
if(_init)
return;
else
_init = true;
// Do a bunch of stuff here
}
It seems to ...
0
votes
3answers
199 views
singletons and threads
My question is about threads being queued. For my example I have one Spring context. I have a method named CalculateTax in a stateless class. A request comes in, a thread is created (tA) and it ...