2
votes
5answers
95 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();
}
…
0
votes
1answer
18 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 …
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 …
1
vote
2answers
108 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 …
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
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 …
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();
}
1
vote
5answers
116 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
160 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?
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 …
3
votes
10answers
325 views
Are empty abstract classes a bad practice, and why?
We have several empty abstract class in our codebase. I find that ugly. But besides this very stupid reason (ugliness), should I refactor it (into empty interface e.g.) ?
Otherwise, the code is …
1
vote
5answers
103 views
Can I change dll-interface without recompilation exe-file?
I have an abstract class in my DLL.
class Base {
virtual char * First() = 0;
virtual char * Second() = 0;
virtual char * Third() = 0;
};
This dinamic library and this interface are used for a …
1
vote
2answers
184 views
Groovy on Grails: Abstract Classes in GORM Relationships
Grails GORM does not persist abstract domain classes to the database, causing a break in polymorphic relationships. For example:
abstract class User {
String email
String password
static constraints …
