The tag has no wiki summary.

learn more… | top users | synonyms

48
votes
3answers
9k views

How do you use the ellipsis slicing syntax in Python?

This came up in Hidden features of Python, but I can't see good documentation or examples that explain how the feature works.
22
votes
7answers
14k views

How do you find all subclasses of a given class in Java?

How does one go about and try to find all subclasses of a given class (or all implementors of a given interface) in Java? As of now, I have a method to do this, but I find it quite inefficient (to say ...
21
votes
7answers
2k views

Reclassing an instance in Python

I have a class that is provided to me by an external library. I have created a subclass of this class. I also have an instance of the original class. I now want to turn this instance into an instance ...
19
votes
3answers
4k views

In C#, how do I check if a type is a subtype OR the type of an object?

To check if a type is a subclass of another type in C#, it's easy: typeof (SubClass).IsSubclassOf(typeof (BaseClass)); // returns true However, this will fail: typeof ...
18
votes
3answers
179 views

Subclassing builtin types in Python 2 and Python 3

When subclassing builtin types, I noticed a rather important difference between Python 2 and Python 3 in the return type of the methods of the built-in types. The following code illustrates this for ...
14
votes
2answers
999 views

Test whether a Ruby class is a subclass of another class

I would like to test whether a class inherits from another class, but there doesn't seem to exist a method for that. class A end class B < A end B.is_a? A => false B.superclass == A => ...
14
votes
2answers
2k views

What is the difference between parent and base in Perl 5?

There appears to be a new pragma named parent that does roughly the same thing as base. What does parent do that warrants a new (non-core) module? I am missing something?
12
votes
3answers
791 views

How to add constraints on inherited properties in a grails domain sub-class

Here's what I'd like to do: class A { String string static constraints = { string(maxSize:100) } } class B extends A { static constraints = { string(url:true) } } So class A ...
12
votes
4answers
779 views

Python: How does inheritance of __slots__ in subclasses actually work?

In the Python data model reference section on slots there is a list of notes on using __slots__. I am thoroughly confused by the 1st and 6th items, because they seem to be contradicting each other. ...
12
votes
3answers
10k views

Make Background of UIView a Gradient Without Sub Classing

Is there a way to make the background of a UIView a gradient without subclassing it? I'd rather not use an image file to accomplish this either. It just seems obtuse to have to subclass UIView just to ...
11
votes
4answers
597 views

When to use which Writer subclass in Java; common practices

I have always been slightly confused with the amount of different IO implementations in Java, and now that I am completely stuck in my project development, I was taking my time to read up on useful ...
11
votes
8answers
2k views

Why aren't Python's superclass __init__ methods automatically invoked?

Why did the Python designers decide that subclasses' __init__() methods don't automatically call the __init__() methods of their superclasses, as in some other languages? Is the Pythonic and ...
11
votes
4answers
2k views

Subclassing dict: should dict.__init__() be called?

Here is a twofold question, with a theoretical part, and a practical one: When subclassing dict: class ImageDB(dict): def __init__(self, directory): dict.__init__(self) # Necessary?? ...
10
votes
2answers
4k views

Subclassing Python dictionary to override __setitem__

I am building a class which subclasses dict, and overrides __setitem__. I would like to be certain that my method will be called in all instances where dictionary items could possibly be set. I have ...
10
votes
2answers
2k views

Subclassing Python tuple with multiple __init__ arguments

The following code works: class Foo(tuple): def __init__(self, b): super(Foo, self).__init__(tuple(b)) if __name__ == '__main__': print Foo([3, 4]) $ python play.py play.py:4: ...
8
votes
2answers
257 views

Subclass dict: UserDict, dict or ABC?

What's the difference between UserDict, dict and ABC and which one is recommended? The docs seem to deprecate UserDict? Also it seems UserDict's update() would use my setitem method whereas dict ...
8
votes
1answer
713 views

Subclassing int in Python

I'm interested in subclassing the built-in int type in Python (I'm using v. 2.5), but having some trouble getting the initialization working. Here's some example code, which should be fairly obvious. ...
8
votes
6answers
1k views

Why can't I subclass datetime.date?

Why doesn't the following work (Python 2.5.2)? >>> import datetime >>> class D(datetime.date): def __init__(self, year): datetime.date.__init__(self, year, 1, 1) ...
7
votes
4answers
285 views

Is calling super in a category the same as calling it in a subclass?

Does calling [super init] do the same thing in a category as a subclass? If not, what's the difference?
7
votes
2answers
974 views

Protected fields not visible to subclasses

I'm writing a custom view that directly extends android.view.View. If I try to access fields mScrollX or mScrollY, I see an error that the field "cannot be resolved or is not a field." The source code ...
7
votes
1answer
310 views

best way to implement custom pretty-printers

The documentation for the pprint module mentions that the method PrettyPrinter.format is intended to make it possible to customize formatting. I gather that it's possible to override this method in a ...
7
votes
4answers
635 views

Perl - Calling subclass constructor from superclass (OO)

This may turn out to be an embarrassingly stupid question, but better than potentially creating embarrassingly stupid code. :-) This is an OO design question, really. Let's say I have an object ...
7
votes
4answers
2k views

Adding custom methods to a subclassed NSManagedObject

I have a Core Data model where I have an entity A, which is an abstract. Entities B, C, and D inherit from entity A. There are several properties defined in entity A which are used by B, C, and D. I ...
7
votes
2answers
1k views

How do you subclass the file type in Python?

I'm trying to subclass the built-in file class in Python to add some extra features to stdin and stdout. Here's the code I have so far: class TeeWithTimestamp(file): """ Class used to tee ...
6
votes
1answer
2k views

Python Subclass Builtin List

I want to subclass the list type and have slicing return an object of the descendant type, however it is returning a list. What is the minimum code way to do this? If there isn't a neat way to do it, ...
6
votes
4answers
7k views

How to reliably subclass UITableViewCell for grouped UITableView?

When writing a customized subclass of UITableViewCell, I find that the results work well for the rectangular cells of a plain-styled UITableView, but do not work at all for the rounded cells in a ...
6
votes
7answers
3k views

Is subclassing in Objective-C a bad practice?

After reading lots of blogs, forum entries and several Apple docs, I still don't know whether extensive subclassing in Objective-C is a wise thing to do or not. Take for example the following case: ...
6
votes
5answers
1k views

Are there any alternatives to implementing Clone in Java?

In my Java project, I have a vector of various types of Traders. These different types of traders are subclasses of the Trader class. Right now, I have a method that takes a Trader as an argument and ...
5
votes
5answers
92 views

In python, how can I ensure that one of my class's methods is always called even if a subclass overrides it?

For example, I have a class BaseHandler(object): def prepare(self): self.prepped = 1 I do not want everyone that subclasses BaseHandler and also wants to implement prepare to have to ...
5
votes
1answer
154 views

template specialization for all subclasses

I would like to define a C++ template specialization that applies to all subclasses of a given base class. Is this possible? In particular, I'd like to do this for STL's hash<>. hash<> is ...
5
votes
4answers
109 views

A Collection of an Abstract Class (or something like that…)

The Scenario I'm making a program in Java that involves cars. NOTE: I've simplified this scenario (to the best of my ability) to make it both more general and easier to understand. I'm not actually ...
5
votes
2answers
548 views

Override @property setter and infinite loop

There is Class A with: @interface ClassA : NSObject { } @property (nonatomic, assign) id prop1; @end @implementation @synthesize prop1; @end then I have subclass @interface ClassB : ClassA { } ...
5
votes
3answers
340 views

java when do you need to explicitly call a superclass constructor

So say I have a subclass that extends a superclass. In what scenarios do I need to explicitly type super() to get the superclass constructor to run? I'm looking at an example in a book about ...
5
votes
1answer
140 views

some Numpy functions return ndarray instead of my subclass

I am subclassing Numpy's ndarray class, adding some meta-data and additional methods. I'm trying to follow the instructions in this article and that one. However, some Numpy (or Scipy) functions ...
5
votes
3answers
255 views

In C# 4.0, is it possible to derive a class from a generic type parameter?

I've been trying this, but I can't seem to figure this out. I want to do this... public abstract class SingletonType<T,U> : U where T : class, new() where U : class, new() // Tried it ...
5
votes
3answers
398 views

What are the reasons for subclassing NSArrayController?

I am trying to improve my KVC/KVO/Cocoa-Bindings-fu and was wondering what could be the reasons to subclass the NSArrayController?
5
votes
4answers
141 views

How can subclasses share behavior when one already derives from a different base class?

I have two classes that implement ISomeBehavior. Now I want them to share functionality. Normally I would replace ISomeBehavior with an abstract class, like SomeBehaviorBase. The problem is that one ...
5
votes
5answers
829 views

Python: How do I check (in runtime) if a given class is a subclass of another given class?

Let's say that I have a class Suit and four subclasses of suit: Heart, Spade, Diamond, Club. class Suit: ... class Heart(Suit): ... class Spade(Suit): ... class Diamond(Suit): ... class ...
5
votes
3answers
869 views

Should I subclass the NSMutableArray class

I have an NSMutableArray object that I want to add custom methods to. I tried subclassing NSMutableArray but then I get an error saying "method only defined for abstract class" when trying to get the ...
5
votes
3answers
3k views

How to test if one java class extends another at runtime?

How to I test if a is a subclass of b? Class<?> a = A.class; Class<?> b = B.class;
5
votes
5answers
1k views

Java: Superclass to construct a subclass on certain conditions, possible?

I have this condition public class A { public action() { System.out.println("Action done in A"); } } public class B extends A { public action() { ...
5
votes
3answers
323 views

Can Constructor Return a SubClass?

Given the following client code: var obj = new Class1(); Is there any way to modify the constructor of Class1 so that it will actually return a subclass (or some other alternate implementation) ...
5
votes
6answers
789 views

I need some C++ guru's opinions on extending std::string

I've always wanted a bit more functionality in STL's string. Since subclassing STL types is a no no, mostly I've seen the recommended method of extension of these classes is just to write functions ...
5
votes
6answers
3k views

Why doesn't Apple allow subclassing of UINavigationController? And what are my alternatives to subclassing?

I'm currently building a tabbed iPhone application where each tab's view controller is an instance of UINavigationController, and where every subcontroller of every one of the UINavigationController ...
5
votes
2answers
121 views

What is the best way to customise parts of an existing Perl program for multiple customers?

I have an existing Perl application which is deployed to multiple customer sites. Unfortunately, the code has been cloned multiple times to customise it for individual customers. So there are now ...
5
votes
1answer
701 views

What's the Scala syntax for a function taking any subtype of Ordered[A]?

I want to write a function that works on any Scala type with a total ordering (i.e. I can use '<' on it). What's the syntax for that? The best I've come up with is def lessThan[T <: ...
4
votes
1answer
47 views

How to get the list of class that have a common S4 superclass in R

In R, how do I get the list of subclass of a S4 superclass? I found showClass("mySuperClass",complete=FALSE) but it only prints the result. I would like to store it in a vector to use it.
4
votes
1answer
158 views

Can I create a custom text field and keyboard for iOS w/o subclassing UIControl?

My app will require the user to input chemistry formulas (H2O, Na^2+), and since subscripts and superscripts may make the typing process confusing for the user, I have decided to make a custom ...
4
votes
2answers
177 views

Avoid if __name__ == '__main__' in Python subclasses to be run using function from parent

I have a generic class (A) which is to be subclassed a lot like this: class A: def run(self): ... self.do_something() ... #abstract function def ...
4
votes
2answers
108 views

C++ STL Containers With Pointers: A few questions

Let's say you have a type T and subtypes TSub1, TSub2 etc. Several of these subtypes are initialised with new TSub(...). The resulting pointers are then stored as elements in: list<T*> tsList; ...

1 2 3 4 5 13