Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

20
votes
4answers
4k views

Ruby: Calling class method from instance

In Ruby, how do you call a class method from one of that class's instances? Say I have class Truck def self.default_make # Class method. "mac" end def initialize # Instance method. ...
13
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’ ...
11
votes
3answers
3k views

Calling a base class's classmethod in Python

Consider the following code: class Base(object): @classmethod def do(cls, a): print cls, a class Derived(Base): @classmethod def do(cls, a): print 'In derived!' ...
10
votes
3answers
4k views

How do I use define_method to create class methods?

This is useful if you are trying to create class methods metaprogramatically: def self.create_methods(method_name) # To create instance methods: define_method method_name do ... end ...
9
votes
2answers
2k views

Ruby metaclass madness

I'm stuck. I'm trying to dynamically define a class method and I can't wrap my head around the ruby metaclass model. Consider the following class: class Example def self.meta; (class << ...
8
votes
1answer
1k views

ActiveRecord Rails 3 scope vs class method

I'm new to the new query interface of ActiveRecord so I'm still figuring things out. I was hoping someone could explain the difference between using a scope in an ActiveRecord model and just using ...
8
votes
5answers
375 views

How does assignment of a function as a class attribute become a method in Python?

>>> class A(object): pass >>> def func(cls): pass >>> A.func = func >>> A.func <unbound method A.func> How does this assignment create a method? It seems ...
8
votes
3answers
957 views

What does 'self' refer to in a @classmethod?

I thought I was starting to get a grip on "the Python way" of programming. Methods of a class accept self as the first parameter to refer to the instance of the class whose context the method is being ...
7
votes
3answers
195 views

How bad is it to override a method from a third-party module?

How bad is it to redefine a class method from another, third-party module, in Python? In fact, users can create NumPy matrices that contain numbers with uncertainty; ideally, I would like their code ...
7
votes
1answer
175 views

Is there any way to create a class property in Python?

The following doesn't work for some reason: >>> class foo(object): ... @property ... @classmethod ... def bar(cls): ... return "asdf" ... >>> foo.bar ...
7
votes
3answers
529 views

In Ruby are there any related applications of the syntax: class << self … end

class << self attr_accessor :n, :totalX, :totalY end The syntax above is used for defining class instance variables. But when I think about what syntax implies, it doesn't make any sense to ...
6
votes
2answers
1k views

Ruby Class Methods vs. Methods in Eigenclasses

Are class methods and methods in the eigenclass (or metaclass) of that class just two ways to define one thing? Otherwise, what are the differences? class X # class method def self.a "a" ...
6
votes
5answers
305 views

Is it bad form to call a classmethod as a method from an instance?

Ex. If I have something like this: class C(object): @classmethod def f(cls, x): return x + x This will work: c = C() c.f(2) 4 But is that bad form? Should I only call C.f() ...
5
votes
3answers
498 views

Objective-C - difference between class method and static method?

So I've worked on different languages such as Java, C#, Objective C In most languages methods that don't require an instance of the objects are called static methods. However, when it comes to ...
5
votes
1answer
120 views

python's super and __new__ confused me

As what I just learned, I can use super this way: super(class, obj_of_class-or-_subclass_of_class) Code goes below: #Case 1 class A(object): def __init__(self): print "A init" class ...
5
votes
4answers
626 views

What's an example use case for a Python classmethod?

I've read What are Class methods in Python for? but the examples in that post are complex. I am looking for a clear, simple, bare-bones example of a particular use case for classmethods in Python. ...
5
votes
4answers
121 views

Python-style classmethod for C#?

Is there a way to do what classmethod does in Python in C#? That is, a static function that would get a Type object as an (implicit) parameter according to whichever subclass it's used from. An ...
5
votes
9answers
258 views

Why does my Python class claim that I have 2 arguments instead of 1?

#! /usr/bin/env python import os import stat import sys class chkup: def set(file): filepermission = os.stat(file) user_read() user_write() ...
4
votes
2answers
58 views

How to write a spec for class methods that get called on class load?

class A include Logging log_to 'whatever' end I want to test if the the method log_to gets called with the right parameter. But as you might have guessed, the log_to method comes from the ...
4
votes
2answers
78 views

Template methods and template classes C++

Can class member functions be template functions, or must they be static class functions. Basically can the class and the function be technically instantiated separately on demand? What are the ...
4
votes
4answers
70 views

Can I write a Objective-C class method like this?

For convenience to use,I write a SBJsonParser Category named Addition: @implementation SBJsonParser(Addition) + (NSDictionary *)parseJson:(NSData *)data { SBJsonParser *parser = [[SBJsonParser ...
4
votes
3answers
133 views

Should constructors comply with the Liskov Substitution Principle?

I usually try to make sure my object instances comply with the Liskov Substitution Principle, but I've always wondered is do people think LSP should apply to constructors too? I've tried googling for ...
4
votes
3answers
160 views

Create decorator that can see current class method

Can you create a decorator inside a class that will see the classes methods and variables? The decorator here doesnt see: self.longcondition() class Foo: def __init__(self, name): ...
4
votes
2answers
510 views

__getattr__ for static/class variables in python

I have a class like: class MyClass: Foo = 1 Bar = 2 Whenever MyClass.Foo or MyClass.Bar is invoked, I need a custom method to be invoked before the value is returned. Is it possible in ...
4
votes
2answers
382 views

How does a classmethod object work?

I'm having trouble to understand how a classmethod object works in Python, especially in the context of metaclasses and in __new__. In my special case I would like to get the name of a classmethod ...
3
votes
2answers
109 views

Global Variables for Class Methods

Background In Cocoa, Apple frequently makes use of the following paradigm: [NSApplication sharedApplication] [NSNotificationCenter defaultNotificationCenter] [NSGraphicsContext currentContext] ...
3
votes
3answers
239 views

How do I return a struct value from a runtime-defined class method under ARC?

I have a class method returning a CGSize and I'd like to call it via the Objective-C runtime functions because I'm given the class and method names as string values. I'm compiling with ARC flags in ...
3
votes
4answers
227 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 = ...
3
votes
2answers
122 views

How to initialize classes (not instances) in Python?

I want to merge constraints from the current and inherited classes only once a class is loaded (not per object!). class Domain(Validatable): constraints = {...} To do this I defined a method ...
3
votes
4answers
349 views

In Ruby, inside a class method, is self the class or an instance?

I know that self is the instance inside of an instance method. So, then, is self the class inside of a class method? E.g., Will the following work in Rails? class Post < ActiveRecord::Base def ...
3
votes
2answers
598 views

Ruby modules and extend self

In what sort of situation is the code: module M extend self def greet puts "hello" end end more beneficial to use over say something like: module M def self.greet puts ...
3
votes
3answers
85 views

Class Methods Inheritence

I was told that static methods in java didn't have Inheritance but when I try the following test package test1; public class Main { /** * @param args the command line arguments */ ...
3
votes
3answers
540 views

(In Ruby) allowing mixed-in class methods access to class constants

I have a class with a constant defined for it. I then have a class method defined that accesses that class constant. This works fine. An example: #! /usr/bin/env ruby class NonInstantiableClass ...
3
votes
1answer
185 views

Python class method - Is there a way to make the calls shorter?

I am playing around with Python, and I've created a class in a different package from the one calling it. In this class, I've added a class method which is being called from my main function. Again, ...
2
votes
0answers
36 views

Is it possible to point a Typedef function pointer to a class member?

I am working with an executable that includes a DLL. For my testcase, I combined the code into a single executable. I am working with Visual Studio 2008 and Boost 1.43. I've tried researching this, ...
2
votes
1answer
57 views

Are class methods inherited too?

When I define a new class inheriting from NSObject: @interface Photo : NSObject { NSString* caption; NSString* photographer; } @property NSString* caption; @property NSString* photographer; ...
2
votes
2answers
56 views

How to refer overriden class functions in python

I know C++ and Java and I am unfamiliar with Pythonic programming. So maybe it is bad style what I am trying to do. Consider fallowing example: class foo: def a(): ...
2
votes
2answers
55 views

Objective-c class methods and copying return values

I'd like some help understanding the code snippet below. Specifically I'd like to know why the copy keyword is used when methodB calls methodA. + (NSString*) methodA { NSArray *paths = ...
2
votes
2answers
133 views

Objective-C: Call Class Method of Subclass

Let's say I have an Objective-C class called MyBaseClass and a subclass called MySubclassedClass. The MyBaseClass has two class methods: + (UIColor *)backgroundColor; + (UIImage *)backgroundImage; ...
2
votes
3answers
361 views

Class methods which create new instances

Apart from the standard [[MyClass alloc] init] pattern, some objects are built from static methods like MyClass *obj = [MyClass classWithString:@"blabla"] According to widespread memory management ...
2
votes
5answers
166 views

Accessing the name of an instance in Python for printing

So as part of problem 17.6 in "Think Like a Computer Scientist", I've written a class called Kangaroo: class Kangaroo(object): def __init__(self, pouch_contents = []): ...
2
votes
1answer
155 views

How to dynamically define a class method which will refer to a local variable outside?

class C end var = "I am a local var outside" C.class_eval do def self.a_class_method puts var end # I know, this is not correct, because the 'def' created a new scope; # I am ...
2
votes
3answers
215 views

Using class/static methods as default parameter values within methods of the same class

I'd like to do something like this: class SillyWalk(object): @staticmethod def is_silly_enough(walk): return (False, "It's never silly enough") def walk(self, ...
2
votes
1answer
204 views

Invoking a superclass's class methods in Python

I am working on a Flask extension that adds CouchDB support to Flask. To make it easier, I have subclassed couchdb.mapping.Document so the store and load methods can use the current thread-local ...
2
votes
4answers
679 views

Using super with a class method

I'm trying to learn myself the super() function in Python. I though I got a grasp of it untill I came over this example (2.6) and found myself stuck. ...
2
votes
4answers
181 views

Is there a difference between the ways of defining a Ruby class method?

Given the following two ways of defining a class method in Ruby: class Foo class << self def bar # ... end end def self.baz # ... end end Is there a difference ...
2
votes
2answers
4k views

Object retain behavior of Objective-C class methods

What's the best practice for retaining and releasing objects passed to class methods? For instance, if you have a "class variable" declared like so: static NSString *_myString = nil ...is the ...
1
vote
1answer
67 views

Using self in class method

I came across this code in ShareKit, and I don't understand what the writer had in mind, using self in a class method. There is a warning: Incompatible pointer types sending 'Class' to parameter type ...
1
vote
3answers
52 views

Coredata - array of fetchedobjects empty when called from other class

From the - viewDidLoad () of a UIViewController class (called StageDetailViewController) I am calling an instance method on another class (called ContentController). - (void)viewDidLoad { ...
1
vote
4answers
85 views

Is it possible to have a method input be one of two possible Classes in Java?

I have two classes, Foo1 and Foo2 that are not hierarchically related, so an instance of Foo1 is not an instance of Foo2 nor conversely. In a different class from these, I have a method ...

1 2 3