Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

31
votes
11answers
1k views

Is there a way to make a method which is not abstract but must be overridden?

Is there any way of forcing child classes to override a non-abstract method of super class? I need to be able to create instances of parent class, but if a class extends this class, it must give its ...
13
votes
13answers
522 views

Should I Teach My Son Programming? What approaches should I take? [closed]

I was wondering if it's a good idea to teach object oriented programming to my son? I was never really good at math as a kid, but I think since I've started programming it's given me a greater ability ...
11
votes
11answers
486 views

“Abstract static” method - how?

There are already several SO questions on why there is not abstract static method/field as such, but I'm wondering about how one would go about implementing the following psuedo-code: class Animal { ...
8
votes
5answers
832 views

Default implementation or abstract method?

Is it better to put a default implementation of a method in a superclass, and override it when subclasses want to deviate from this, or should you just leave the superclass method abstract, and have ...
7
votes
4answers
860 views

C# design: Why is new/override required on abstract methods but not on virtual methods?

Why is new/override required on abstract methods but not on virtual methods? Sample 1: abstract class ShapesClass { abstract public int Area(); // abstract! } class Square : ShapesClass { ...
6
votes
5answers
110 views

inheritance from an abstract class

Hi Imagine I have a class called Engine as an abstract base class, I have also ElectrictEngine class and FuelEngine class which derive from it. I want to create a method for refueling the engine. ...
6
votes
5answers
974 views

Should an abstract class have at least one abstract method?

Is it necessary for an abstract class to have at least one abstract method?
4
votes
4answers
89 views

why would you need to know whether a method of an abstract class is abstract

I've been asked a question. It is the following: The API documentation of an abstract class tells you whether a method is abstract. When and why would you need to know this? Any help would be ...
4
votes
1answer
238 views

JAXB 2.x: Abstract methods get marshalled as Attribute

I have an abstract root class, let's say A. And I have several implementation classes extending A. A has FIELD annotation as well as some @XmlElement annotated properties. A also has an abstract ...
3
votes
7answers
94 views

Abstract class is using it's own abstract method?

I'm looking over some code in a game and I came across something that I haven't seen before and I don't really know whats going on. public abstract class Entity { public Entity(World world) ...
3
votes
6answers
108 views

abstract methods and overiding function in C++ and Java

In C++ and Java, or their respecting rules, what limits are placed on overiding abstract methods. Must you match the arguments or return type. I usually see abstract functions implemented with only ...
3
votes
5answers
93 views

Please explain this pattern when using abstract method

I've seen the following pattern used in many places: abstract class SimpleProvider<T> { public object Create(IContext context) { return CreateInstance(context); } ...
3
votes
2answers
91 views

Abstract/Virtual Members to Provide Common & Derived Combined Functionality - C#

I've done this before - just can't remember the trick. If i have an abstract class: public abstract class Post And a set of deriving classes: public class Photo : Post I want to force the ...
3
votes
10answers
742 views

In Java, when should I use an abstract method in an interface?

I have the following interface in Java public interface IFoo { public abstract void foo(); public void bar(); } What is the difference between foo() and bar()? When should I use abstract? ...
2
votes
1answer
80 views

Abstract methods in c#

I honestly don't know why this is throwing me off. public abstract class BankAccount { private string accNo; private double balance; public abstract void ...
1
vote
3answers
140 views

Should I be using abstract methods in this Python scenario?

I'm not sure my approach is good design and I'm hoping I can get a tip. I'm thinking somewhere along the lines of an abstract method, but in this case I want the method to be optional. This is how I'm ...
1
vote
5answers
168 views

How to require implementation of method in Python?

I'm using duck typing in Python. def flagItem(object_to_flag, account_flagging, flag_type, is_flagged): if flag_type == Flags.OFFENSIVE: object_to_flag.is_offensive=is_flagged elif ...
1
vote
6answers
183 views

Polymorphism and casting problem

In order to explain my problem here is an example namespace CheckAbstarct { class Program { static void Main(string[] args) { myAbstarctClass mac1 = ...
1
vote
2answers
406 views

C++/CLI : How do I declare abstract (in C#) class and method in C++/CLI?

What is the equivalent of the following C# code in C++/CLI? public abstract class SomeClass { public abstract String SomeMethod(); }
1
vote
3answers
841 views

abstract method override in Derived class, how to make private

Hi I have a class "A" with as abstract method protected abstract List<Contributor> GetContributors(List<SyndicationPerson> contributersList); I want to override this method in derived ...
1
vote
6answers
337 views

Default implementations of Abstract methods

I am dealing with a large codebase that has a lot of classes and a lot of abstract methods on these classes. I am interested in peoples opinions about what I should do in the following situation. ...
0
votes
2answers
33 views

Specifying the default return while declaring an abstract method

I have the following classes The interface: public abstract class MyAbstractClass { public abstract boolean checkSomething(); } The class inheriting the abstract class: public class MyClass ...
0
votes
1answer
184 views

python @abstractmethod decorator

I have read python docs about abstract base classes: From here: abc.abstractmethod(function) A decorator indicating abstract methods. Using this decorator requires that the class’s ...
0
votes
1answer
86 views

Check if classes in modules implement the right interface

I have the following interface : class Interface(object): __metaclass__ = abc.ABCMeta @abc.abstractmethod def run(self): """Run the process.""" return I have a ...
0
votes
5answers
124 views

abstract method use vs regular methods

Hi I Would like to know the difference between two conventions: 1.Creating an abstract base class with an abstract method which will be implemented later on the derived classes. 2.Creating an ...
0
votes
2answers
249 views

Ways to keep abstract method server side for WCF

We are enforcing all our domain objects to implement GetHashCode. namespace Core { [Serializable] public abstract class DomainObject { public abstract override int GetHashCode(); } } ...
0
votes
6answers
304 views

When and Why to use abstract classes/methods?

I have some basic questions about abstract classes/methods.I know basic use of abstract classes is to create templates for future classes. But are there any more uses of them ? When should you prefer ...