Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
4answers
1k views

How to understand the difference between class_eval() and instance_eval()?

Foo = Class.new Foo.class_eval do def class_bar "class_bar" end end Foo.instance_eval do def instance_bar "instance_bar" end end Foo.class_bar #=> undefined method ‘class_bar’ ...
4
votes
1answer
108 views

Adding attributes the instancemethods in python

I bumped into this behaviour when trying to get class-decorators and method-decorators to play nicely together. Essentially, the method decorators would flag some of the methods as special with some ...
2
votes
4answers
218 views

Objective-C class method does not call delegate methods while instance method does

I have the following 2 methods: -(void)authenticateUserToGoogle:(NSString *)userName withPassword:(NSString *)password { NSString *URLstr = GOOGLE_CLIENT_LOGIN; URLstr = ...
2
votes
3answers
439 views

Overcoming Python's limitations regarding instance methods

It seems that Python has some limitations regarding instance methods. Instance methods can't be copied. Instance methods can't be pickled. This is problematic for me, because I work on a very ...
1
vote
3answers
106 views

where is the instancemethod decorator?

In my code I have a method that returns an instance of a class, like this: class MyClass: def fun( self, *args ): # the method return Props( self, *args ) class Props: # the returned object ...
1
vote
7answers
290 views

Delegating instance methods to the class method

In Ruby, suppose I have a class Foo to allow me to catalogue my large collection of Foos. It's a fundamental law of nature that all Foos are green and spherical, so I have defined class methods as ...
1
vote
1answer
792 views

Why does instance_eval() define a class method when called on a class?

Foo = Class.new Foo.instance_eval do def instance_bar "instance_bar" end end puts Foo.instance_bar #=> "instance_bar" puts Foo.new.instance_bar #=> undefined method ...
0
votes
1answer
20 views

How do I define in the model a class method, not an instance one?

I want to be able to call Activity.pull_latest from a controller, but if I do class Activity < ActiveRecord::Base def pull_latest [...] I have to call it Activity.new.pull_latest. How do I ...
0
votes
1answer
291 views

Cocoa-Touch. What Exactly is the Difference Between These NSMutableData Methods?

One thing I'm a bit unclear on is the difference between these NSMutableArray Methods: // Class Method Style NSMutableData *myMutableDataInstance = [NSMutableData dataWithLength:WholeLottaData]; ...