Tagged Questions
The subclassing tag has no wiki summary.
12
votes
10answers
444 views
OOP. Choosing objects
I'm a relative newbie to thinking in OOP terms, and haven't yet found my ‘gut instinct’ as to the right way to do it. As an exercise I'm trying to figure out where you'd create the line between ...
9
votes
4answers
1k views
Is there a way to forbid subclassing of my class?
Say I've got a class called "Base", and a class called "Derived" which is a subclass of Base and accesses protected methods and members of Base.
What I want to do now is make it so that no other ...
8
votes
3answers
104 views
Why do cell renderers often extend JLabel?
I noticed this is common. For example DefaultListCellRenderer, DefaultTableCellRenderer, and DefaultTreeCellRenderer all use it. Also a lot of the custom cell renderers I see online use this as well. ...
8
votes
4answers
282 views
In C++, does overriding an existing virtual function break ABI?
My library has two classes, a base class and a derived class. In the current version of the library the base class has a virtual function foo(), and the derived class does not override it. In the next ...
6
votes
5answers
128 views
Best practice, overriding __construct() versus providing init() method
When you are subclassing objects and want to extend the initialization code, there are two approaches. Overriding __construct(), and implementing an initialization method that your superclass ...
6
votes
3answers
61 views
Singletons testing and subclassing
I saw this while using picocontainer. They say you have to avoid singletons.
because the Singleton pattern makes it almost impossible for the class (and possibly all other classes which depend on it) ...
6
votes
4answers
229 views
What to consider before subclassing list?
I was recently going over a coding problem I was having and someone looking at the code said that subclassing list was bad (my problem was unrelated to that class). He said that you shouldn't do it ...
6
votes
3answers
1k views
Custom UIToolBar from Images
I need to create a UIToolbar object that uses an image for the background. Most of the buttons are images as well, and rectangular. One button, however, is round and overlaps the toolbar like the ...
6
votes
3answers
387 views
Which is better Java programming practice: stacking enums and enum constructors, or subclassing?
Given a finite number of items which differ in kind, is it better to represent them with stacked enums and enum constructors, or to subclass them? Or is there a better approach altogether?
To give ...
5
votes
5answers
336 views
Modify subclassed string in place
I've got the following string subclass:
class S(str):
def conc(self, next_val, delimiter = ' '):
"""Concatenate values to an existing string"""
if not next_val is None:
...
5
votes
2answers
534 views
Python decorators and class inheritance
I'm trying to use decorators in order to manage the way users may or may not access resources within a web application (running on Google App Engine). Please note that I'm not allowing users to log in ...
5
votes
3answers
2k views
Subclassing UINavigationBar … how do I use it in UINavigationController?
I wanted to subclass UINavigationBar (to set a custom background image & text color) and use that for all the navigation bars in my app. Looking at the API docs for UINavigationController, it ...
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
275 views
Choosing the right subclass to instantiate programatically
Ok, the context is some serialization / deserialization code that will parse a byte stream into an 'object' representation that's easier to work with (and vice-versa).
Here's a simplified example ...
5
votes
3answers
236 views
utility class vs subclassing .net controls
I want to reuse some code I wrote to add some functionality to a datagridview. I want the default datagridview properties and events to be exposed, so I didn't want to create a new custom component. ...
4
votes
1answer
149 views
Subclassing NSPredicate to add operator
Cocoa defines predicate classes (NSPredicate, NSExpression, etc.) which "provide a general means of specifying queries in Cocoa" Predicate Programming. This set of classes describes what I need but ...
4
votes
2answers
111 views
Subclassing and built-in methods in Python
For convenience, I wanted to subclass socket to create an ICMP socket:
class ICMPSocket(socket.socket):
def __init__(self):
socket.socket.__init__(
self,
...
4
votes
6answers
208 views
Why there are no OutOfMemoryError subclasses?
As we all know, there are multiple reasons of OutOfMEmoryError (see first answer). Why there is only one exception covering all these cases instead of multiple fine-grained ones inheriting from ...
4
votes
2answers
201 views
Is subclassing a User model really bad to do in Rails?
I am getting lots of push back from Rails because I have subclassed User into many different subclasses. In my application, not all users are equal. There's actually a lot of model objects and not ...
4
votes
2answers
373 views
How to override a superclass' property with more specific types?
The Scenario
I have a situation where a base class called AbstractRequest has a delegate property of type id <AbstractRequestDelegate> declared in the header file:
@property (nonatomic, assign) ...
4
votes
1answer
176 views
wtforms Form class subclassing and field ordering
I have a UserForm class:
class UserForm(Form):
first_name = TextField(u'First name', [validators.Required()])
last_name = TextField(u'Last name', [validators.Required()])
middle_name = ...
4
votes
3answers
2k views
UIView subclass with its own XIB
I created a custom UIView subclass, and would prefer to not layout the UI in code in the UIView subclass. I'd like to use a xib for that. So what I did is the following.
I created a class "ShareView" ...
4
votes
6answers
530 views
How to hint use of UIView subclass for compiler
I have a subclass of UIViewController that is responsible for a single UIWebView.
Since this is a simple case, I override -(void)loadView, instantiate the UIWebView and assigning it the controller's ...
4
votes
1answer
853 views
overridden three20 TTDefaultStyleSheet style not working
i recently got three20 integrated into my app and am trying to override the default toolbar color in TTWebController.
In TTWebController.m:118 I see that this is setting the toolbar's tintColor:
...
4
votes
3answers
830 views
Why can't you reduce the visibility of a method in a java subclass?
Why does the compiler give an error message when you reduce the visibility of a method while overriding it in the subclass?
3
votes
2answers
87 views
Defining __repr__ when subclassing set in Python
I'm trying to subclass the set object in Python, using code similar to the below, but I can't work out a sensible definition of __repr__ to use.
class Alpha(set):
def __init__(self, name, s=()):
...
3
votes
3answers
66 views
Calling a subclass method on a variable typed as superclass
I have created a class named Foo:
@interface Foo:NSObject{
int myInt;
}
@property int myInt;
@end
and a subclass of Foo named Bar:
@interface Bar:Foo{
NSString *myString;
}
@property ...
3
votes
2answers
127 views
Are template arguments required everywhere when mentioning a template base class?
Here's a simple template;
template <class T>
class tt {
private:
T x;
public:
tt() {x=0;};
Add(T p) {x += p;};
};
... and then a subclass of it;
class cc : ...
3
votes
3answers
197 views
Java : Extending Generic Classes
public class MyGeneric<T, E> {}
public class Extend1<T, E> extends MyGeneric<T, E> {}
public class Extend2 extends MyGeneric<String, Object> {}
As far as I am aware, both ...
3
votes
2answers
123 views
How do I stop an extra context menu from showing up when I select an option from a context menu in VB6?
I am maintaining an application with a VB6 form that contains a ComponentOne VSFlexGrid 7.0. We have a custom context menu that allows users to perform some specialized copy-and-paste operations. ...
3
votes
4answers
165 views
What is the right way to emulate the list.insert() method in a subclass of python's list?
I'm trying to build a class that inherits methods from Python's list, but also does some additional things on top... it's probably easier just to show code at this point...
class Host(object):
...
3
votes
4answers
101 views
Ruby - how to handle problem of subclass accidentally overriding superclass's private fields?
Suppose you write a class Sup and I decide to extend it to Sub < Sup. Not only do I need to understand your published interface, but I also need to understand your private fields. Witness this ...
3
votes
2answers
154 views
What is subclassing?
I am new to java and i am trying to create an xml document and clone a specific node (minus the textnode)of this document over and over again. Someone answered me and said i should subclass the node ...
3
votes
2answers
380 views
Subclassing models in Rails
I have two models, Article and Recipe, which have a bunch of the same attributes and methods. I want to make the subclasses of a new class "Post" and move all their shared logic in there so I'm not ...
3
votes
2answers
112 views
problem subclassing builtin type
# Python 3
class Point(tuple):
def __init__(self, x, y):
super().__init__((x, y))
Point(2, 3)
would result in
TypeError: tuple() takes at most 1
argument (2 given)
Why? What ...
3
votes
4answers
332 views
Delphi: How to remove subclasses in reverse order?
Mike Lischke's TThemeServices subclasses Application.Handle, so that it can receive broadcast notifications from Windows (i.e. WM_THEMECHANGED) when theming changes.
It subclasses the Application ...
3
votes
3answers
404 views
MVC UpdateModel and Sub Classes vs Base Class
I'm looking to use the UpdateModel method to a Sub Class that retrieved at runtime, would be great if someone could shed the light on whether I'm making a total hash of it and/or whether or not what ...
3
votes
3answers
192 views
Overriding a variadic method in objective-c
When subclassing in objective-c, how can I forward a call to the superclass in the case of a variadic method. By what should I replace the ??? below to send all the objects I got?
- (void) ...
3
votes
2answers
123 views
How can I add a test method to a group of Django TestCase-derived classes?
I have a group of test cases that all should have exactly the same test done, along the lines of "Does method x return the name of an existing file?"
I thought that the best way to do it would be a ...
3
votes
3answers
252 views
Returning subclass object from superclass method
I keep coming back to variants of this problem: it probably has a very simple solution, but I can't seem to figure it out...
I have a bunch of classes of the form xQuantity, e.g. DistanceQuantity, ...
3
votes
5answers
436 views
How do I change the class of an object to a subclass of its current class in C++?
I have an array of pointers to a base class, so that I can make those pointers point to (different) subclasses of the base class, but still interact with them. (really only a couple of methods which I ...
3
votes
1answer
509 views
How to draw a picture instead of the slider on Qt QSlider?
I have created a class that inherits from QSlider. I want to draw a picture on the slider (grabber) instead of showing the plain one. How to do it?
--
I found an answer and posted after I had ...
3
votes
2answers
3k views
Making a thinner UITabBar
I would like to be able to thin the UITabBar's height by removing each item's titles and reclaiming the vertical space they take up, a la Tweetie 2.
This doesn't seem settable in the .xib or ...
3
votes
5answers
5k views
How to cast 'Class A' to its subclass 'Class B' - Objective-C
I'm using a framework which defines and uses 'ClassA', a subclass of NSObject. I would like to add some variables and functionality so naturally I created 'ClassB', a subclass of 'ClassA'
Now my ...
2
votes
1answer
59 views
creating a defaultlist in python
I'm trying to create a list equivalent for the very useful collections.defaultdict. The following design works nicely:
class defaultlist(list):
def __init__(self, fx):
self._fx = fx
...
2
votes
1answer
71 views
How to subclass a subclass of numpy.ndarray
I'm struggling to subclass my own subclass of numpy.ndarray. I don't really understand what the problem is and would like someone to explain what goes wrong in the following cases and how to do what ...
2
votes
2answers
210 views
The easiest way to subclassing C# System.Type
I need to make fixed point number class inherit from System.Type.
class FixedPoint : Type
{
public bool Signed { get; set; }
public int Width { get; set; }
public int IntegerWidth { get; ...
2
votes
2answers
183 views
Automatically resizing NumPy recarray
I'd like to create a subclass of numpy.recarray that automatically resizes when data is added to a row outside of its current length.
The code below does most of what I want.
class ...
2
votes
2answers
59 views
Can I provide methods that use generic types where the generic type is always the class?
I'm not sure if I convey the question well enough and I couldn't find a better way to do this, as I am quite new to java.
I believe the best is by way of illustration, if I have a class
public ...
2
votes
5answers
526 views
Objective-C sub-classing basics, how to add custom property;
I am having a issue subclassing MKPolygon.
I want to add a simple int tag property but I keep getting an instance of MKPolygon instead of my custom class, so calling setTag: causes an exception.
The ...