The tag has no wiki summary.

learn more… | top users | synonyms (1)

0
votes
1answer
29 views

ActiveRecord: class methods without scoping

I need to create a class method of my ActiveRecord. But that method is not meant to be a scope, so I'd like to prevent misusage of it like a scope. Is it possible to do?
1
vote
1answer
28 views

Dynamically create list of classes with inheritance and classmethods

I have a list of classes, and I'm trying to dynamically create another list of classes, such that each one has a classmethod that creates an instance of a child of a class from the original list. The ...
-1
votes
3answers
141 views

ARC Semantic Issue: No visible @interface for Class declares the selector

Pretty basic stuff but i am unable to troubleshoot where the problem is. In my project, i have a class named "TheFeedStore" with following two methods: - (BOOL)hasItemBeenRead:(RSSItem *)item { ...
3
votes
1answer
60 views

Python: How to call an instance method from a class method of the same class

I have a class as follows: class MyClass(object): int = None def __init__(self, *args, **kwargs): for k, v in kwargs.iteritems(): setattr(self, k, v) def ...
0
votes
2answers
52 views

switch-case statement as a method in a public class

Looking to implement a switch case statement method inside a class. I have a class that I'm writing to from a SQL select and sql datareader. Having trouble setting up the Status class which I pass in ...
5
votes
3answers
63 views

Why use classmethod instead of staticmethod? [duplicate]

I know what they do and I've seen many examples of both, but I haven't found a single example where I would have to use classmethod instead of replacing it with a staticmethod. The most common ...
1
vote
0answers
55 views

Using class methods … fails with the old “__init__() takes exactly x arguments (x+1 given)”

Here's some code I wrote with the purpose in mind of having more than one way to initialize my GameObject class: class GameObject(object): def __init__(self, name, location, description, ...
0
votes
2answers
59 views

Static method (which isn't class method) in objective C

While reading THIS question and accepted answer for the question, I was unable to get the difference between these two types of methods. Actually got the point by reading the example, but then, I was ...
2
votes
1answer
66 views

Objective-C: Working with static variables

Given the code below, the spaceship (only ever one in the program) checks to see if it can pay for a new part, and 'if (so)', builds it. When the payFor: message is sent, should the iVars be dealt ...
1
vote
2answers
80 views

How can I dynamically instantiate (by classname as a string) the class to call getThings() in this example?

I want to see the source definition for object.__new__() and decided to use this quick way for accessing that code. Why is python giving me a TypeError (is not a type:method), when type() tells me ...
1
vote
0answers
25 views

Rails: Namespaced Class Method Referring to Wrong Class

I have two models, one of which is namespaced: Group::Vote The other of which is not: Vote The namespaced model has a class method: def self.get_user_value(voteable) ...
-6
votes
2answers
60 views

Proper way to execute class method [closed]

I'm trying figure out how to execute the following method of SBSlidingAlertDisplay: - (void)updateDesktopImage:(id)arg1; I appear to be hitting a brick wall in regards to getting the correct ...
1
vote
1answer
26 views

How can I invoke a function from an imported module inside a class methode?

I am trying to make a small GUI program with tkinter. I need to use Python's subprocess.call() When I try to do so inside a class method I get following error: self.return_code = ...
0
votes
0answers
62 views

Correct way to create class method with ARC - NSDictionary Leaks

I made a class method for read a plist file, and it works fine. I changed in ARC and now the class look like: + (NSDictionary *)readPlistDic:(NSString*)filePlist { NSString ...
0
votes
0answers
50 views

Python — passing a populated list as a parameter for a constructor comes out as an empty list in the object

new to stackoverflow and new to Python. I appreciate all help given! I'm trying to call the constructor for a class and hand it a populated list. However, when the object is created the list is empty. ...
6
votes
3answers
219 views

Why is “self = [[Rectangle alloc] init]” in a class method BAD?

In the document "Objective-C Programming Language" by Apple, page 48 says: + (Rectangle *)rectangleOfColor:(NSColor *) color { self = [[Rectangle alloc] init]; // BAD [self setColor:color]; ...
5
votes
3answers
47 views

Dynamically adding class methods to a class

I have the following snippet: FEED_TYPES = [ ('fan_mail', 'Fan Mail'), ('review', 'Review'), ('tip', 'Tip'), ('fan_user', 'Fan User'), ('fan_song', 'Fan ...
0
votes
1answer
46 views

How to pass in a starting sequence number to a Django factoryboy factory?

factoryboy defaults to 1 for sequences. How can I pass in a number to use as a different starting number instead? I can subclass the _setup_next_sequence() method, but how can I give it a variable ...
-1
votes
7answers
107 views

How to write an .add() method? [closed]

this is a homework problem, and I am having trouble understanding how I can create a .add() method in a class Distance. class Distance has two integer instance variables: private int feet; private ...
0
votes
2answers
155 views

iOS return bool value in block

I am trying to return a bool value from a class method I call that has a block in it. I get the error, Incompatible block pointer types sending.... How would I get around this? I just want to know if ...
1
vote
1answer
87 views

Can a class method singleton object respond to a delegate call?

I have a SettingsManager singleton which handles user settings throughout my app (for example, whenever a sound is played in any view controller, the SettingsManager is checked to see if sound is ...
1
vote
1answer
61 views

How to call a parent class's @classmethod from an overridden @classmethod in Python?

Let's say I have a class class SimpleGenerator(object): @classmethod def get_description(cls): return cls.name class AdvancedGenerator(SimpleGenerator): @classmethod def ...
1
vote
2answers
63 views

pythonic way of computing a value to a class object only once

I have a class where I need access to a computed value that can only be calculated per subclass. This computation is not cheap, and since there are many instantiations of the subclasses, I want to ...
1
vote
3answers
73 views

Some problems with decorators for classmethods

I have some piece of code in which I want to use a decorator on a classmethod as follows: import functools def mydeco(function): @classmethod def wrapper(cls): return function(cls) ...
0
votes
0answers
61 views

How to call Python classmethod from method of the same class?

I am trying to create a "retry" mechanism that needs to work as a wrapper to other methods. I created a class to do this and made a retry classmethod. This works fine on members of other classes, ...
0
votes
4answers
52 views

How to call class methods which are stored in a variable

If I want to call a class method (mailer method in rails), providing its name in a variable. How can I do that? For objects, we can use send, or we can use read_attribute to read some values ...
-1
votes
2answers
27 views

Using methods from 2nd-level extended class [closed]

I'm trying to use methods from that is extended by the class that this class is extending from. An example of what I'm trying to do: class A def foo "Foobar" end end class B extend A end ...
2
votes
3answers
109 views

Objective-C best practice for using class methods [closed]

I am used to functional programming. Now writing for iOS I find myself using class methods (+) frequently, rather than creating instances (from -). Usually I use class methods for small, recurring ...
1
vote
1answer
53 views

Python — Decorator that works on both classmethods and instance methods

I have two decorators, defined as follows, both of which do the exact same thing: # ONLY WORKS FOR CLASSMETHODS def paginated_class_method(default_page_size=25): def wrap(func): ...
1
vote
1answer
148 views

Factory method for python object - best practice

This is a question regarding the best practice for creating an instance of a class or type from different forms of the same data using python. Is it better to use a class method or is it better to use ...
0
votes
0answers
32 views

Instance method '-adjustSegmentText:' not found (return type defaults to 'id')

Iam getting a warning like this when iam trying to access the class method of same class. Instance method '-adjustSegmentText:' not found (return type defaults to 'id') in the below line [self ...
-1
votes
2answers
103 views

Objective C delegates and class methods vs instance methods

There is a similar question to mine on the following link but it doesn't quite answer my query. I am setting a helper class for Facebook (follows the delegation pattern) . An example of one of the ...
0
votes
0answers
48 views

How can I set conditional decorators on setUpClass in unittest?

I want to set a conditional decorator to the setUpClass in python's unitest. I have tried the following (without a condition for now, to demonstrate the point): import unittest class ...
2
votes
1answer
193 views

Xcode 4.6 "No visable @interface for 'PlayingCardDeck' declares the selector 'addCard:AtTop:'

I know this is a common problem, however I couldn't find the solution to mine. I'm following cs193p Standford course, following letter by letter the code at the lecture slides, and Xcode 4.6 still ...
1
vote
1answer
53 views

python: is this a good way to use the same function name for both classmethod and method?

class A(object): @classmethod def print(cls): print 'A' def __print(self): print 'B' def __init__(self): self.print = self.__print a = A() a.print() ...
0
votes
4answers
60 views

How to acces Class methods?

I have a class method which takes an Array as the parameter +(void)classMethod:(NSArray*)array; A message is being sent to this method from an outside ViewController with the value of the array. ...
2
votes
1answer
96 views

Root node operations in tree data structures

Need a way to indicate/enforce that certain methods can only be done on the root Node of my tree data structure. I'm working in Python 2.x I have a class, Node, which I use in conjunction with ...
0
votes
2answers
55 views

Why am I getting a “no visible @interface message for 'NSDecimalNumber' declares the selector” for my method?

I must be missing something simple here. Anyway, I started out by just making a regular function, NSDecimalNumber* aa(NSMutableString *string) {code} which I would then call by pressing a button ...
4
votes
4answers
135 views

How do I list all objects created from a class in ruby?

Is there any way in ruby for a class to know how many instances of it exist and can it list them? Here is a sample class: class Project attr_accessor :name, :tasks def initialize(options) ...
2
votes
0answers
36 views

How can I use a constructor class method in a subclass? [duplicate]

Possible Duplicate: Class methods which create new instances I feel like I'm missing something important. I'm creating a matrix class for matrix algebra as an abstract superclass, with ...
1
vote
2answers
181 views

Python - can I programmatically decorate class methods from a class instance?

I have an object hierarchy in which almost all of the methods are class methods. It looks like the following: class ParentObject(object): def __init__(self): pass @classmethod ...
0
votes
2answers
62 views

Python - how can I get the class name from within a class method - using @classmethod

I have the following code: class ObjectOne(object): @classmethod def print_class_name(cls): print cls.__class__.__name__ def print_class_name_again(self): print ...
1
vote
2answers
88 views

Python - how can I reference a class variable or method from within the __init__ method?

I have a hierarchy of objects in a python module as follows: class BaseObject(object): initialized = False def __init__(self): self._initialize() @classmethod def ...
2
votes
1answer
95 views

Ruby: Getting access to a subclass constant

Why does the following not work? class Foo def self.keyletters self::KEYLETTERS end end class Baz < Foo KEYLETTERS = "US" end puts Foo.keyletters I have seen questions for ...
3
votes
1answer
89 views

Overloading a template function which can differentiate between non-static member method and other functions

struct A // some class { void method(); // non-static member method static void function(); // static member method }; void function(); // global function vector<A> vi; // any such `std` ...
0
votes
1answer
73 views

Selectively allowing classes to use others' private class methods, or equivalent solution

In my project Bar, I have this class Foo, whose instances represent unique, named real-world objects. References to these instances are scattered under good care around the data structures in my ...
0
votes
0answers
25 views

Overwriting a firefox addon class method from another addon

currently im developing a firefox extension where i do need to overwrite a class method of another addon. But to be honest: I really dont know where to start that. What i tried is: importing the ...
1
vote
3answers
86 views

Decorated classes inheritance and classmethods

How to decorate a class in the right way to be able to inherit a classes from the decorated one? Is there exists a right way? If I will do something like: def singleton(cls): ...
0
votes
0answers
115 views

How to send messages correctly to another Class Objective-C

My project is some kind of a timing application for Mac OS X and it looks like I have problems to understand how to make things work together :) What I did so far: 1. An NSObject Class ...
3
votes
2answers
31 views

Reformulated previous status 3 query

Ok, reformulated and consolidated from C++ Process terminated with status 3 confusion to a single file with minimum code, replacing my 'log' references with 'cout', printing to console instead of to ...

1 2 3 4 5