2
votes
5answers
97 views
abstract classes and interfaces best practices in java
So you've got an interface and an abstract class that implements a subset of the methods in the interface. You've also got some classes that inherit the abstract class and give implementations of the …
2
votes
2answers
25 views
Allow field in a child class to be of a type descended from the type of the field in the parent class
I have the following setup (simplified, obviously):
An abstract class, with an A object and an abstract method
abstract public class X
{
protected A myA;
abstract public int MethodForX();
}
…
9
votes
13answers
1k views
When to use an interface instead of an abstract class and vice versa?
This may be a generic OOP question. I wanted to do generic comparison between an interface and an abstract class on the basis of their usage. When would one want to use and interface and when would on …
0
votes
1answer
20 views
Iphone SDK selector or abstract class
Hi,
I am developing a special type of view controller for an iPhone component library.
I have got the who view controller working well, but I need to change it so that it works in one of two ways:
…
0
votes
1answer
23 views
Fluent nHibernate Abstract class (non) Mapping problem
I have a base class, which has 2 derived class.
Each derived class has a mapping file (they base class has non and it's abstract)
Each derived class has an object that points to itself (which is …
1
vote
2answers
109 views
abstract class and using array polymorphically
i'm just reading meyers "More Effective C++ 35 New Ways" - item 33, and he suggest there
always to inherit from an abstract base class, and not a concrete.
one of the reason he claims, which i can't …
3
votes
7answers
188 views
What is an alternative to having static abstract methods?
I'm having some problems trying to figure out how to solve a problem without being able to have static method in an abstract class or interface. Consider the following code. I have many Wizards that …
2
votes
5answers
92 views
Abstract keyword in PHP
Hey, I'm quite experienced with PHP but I have no idea what the keyword abstract does when it comes down to object orientated programming. Can anyone explain in plain english what it can be used for?
…
0
votes
2answers
47 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();
}
0
votes
4answers
104 views
How can I have both abstract and virtual methods in one class?
In the following parent class SqlStatement, how can I make Initialize() abstract but keep Execute() virtual?
using System;
using System.Collections.Generic;
namespace TestSql28374
{
class …
1
vote
9answers
225 views
Abstract class in c++
Hi, Let's say I've got class:
class Bad_Date
{
private:
const char* _my_msg;
public:
const char* msg() const
{
return _my_msg;
}
};
And I would like to not be able to create any object of this …
2
votes
3answers
997 views
C# syntax for declaring a variable of an abstract generic type
I have a class defined as follows;
public abstract class Repository<TEntity, TDataContext> : DisposableBaseClass
where TEntity : class
where TDataContext : DataContext, new()
{...contains …
0
votes
2answers
43 views
In nHibernate, can I map an abstract base class to a collection?
I have a base class for content items in a CMS I'm building. It's currently marked abstract because I only want derived classes to be instantiated. Derived classes like BlogPost, Article, Photo, …
1
vote
5answers
117 views
Extend abstract singleton class
If you had a factory class that creates new objects of some kind, and that factroy class is a singleton, like this:
class Database_Factory extends Base_Factory {
private static $factory;
…
6
votes
4answers
164 views
interface vs abstract class
In php :: Please explain when i should use interface and when i should use abstract class? And how i can change my abstract class in to an interface?
