Abstract classes are classes which cannot be instantiated. They exist to provide common functionality and interface specifications to several concrete classes.

learn more… | top users | synonyms (1)

1
vote
2answers
12 views

Why am I receiving an Abstract Class error when I press the Applet button?

I am trying to create a button that once pressed erases the old screen and draws something new. I plan on drawing a room then adding a button onto a door. When the button on the door is pressed, it ...
0
votes
3answers
19 views

issue with abstract classes and netbeans

I am using Java Beans for making a simple program using an abstract class. The rough sketch of my form is: Payment to do(label) this label is in a JFrame. Now I have an abstract class called ...
2
votes
1answer
33 views

C++ compiler independent DLLs using abstract interface

I followed the guide at CodeProject and built a DLL with an abstract interface and exported the factory functions using the extern "C" command along with __declspec(dllexport) and __cdecl and by doing ...
1
vote
4answers
46 views

operator++(int) overload with abstract base class and Wall

I am currently creating a set of iterators which will differ in implementation detail, but will be used in the same algorithms. For this reason, they must all have the same interface. To achieve this, ...
-3
votes
2answers
30 views

Concrete method in abstract class

I understand an abstract class may contain abstract and concrete methods (i.e with body implementation). My question are: can subclasses inherit/override concrete methods from an abstract superclass. ...
2
votes
4answers
46 views

Making a JUnit test case for an abstract java class? [duplicate]

I have to develop JUnit test cases for application which has several abstract classes and methods. Is is possible to create JUnit test cases for the abstract classes without being extended by another ...
5
votes
3answers
80 views

Abstract class and interface together?

I have a section of my code where some classes are implementing an interface. It feels correct, but there is a little duplication among the child classes - namely 3 methods. So this is screaming out ...
0
votes
1answer
49 views

Most effective way to create a class that has a small variance in derived classes

I have a class that contains a lot of functionality called Record. In the system there exist two basic types of records that have a primary key that is uint, and those that have a primary key of Guid. ...
0
votes
2answers
59 views

OOP & Java: how to generalize from an abstract class?

first of all, i'd like to apologize about my grammar, since english is not my first language, usually i make grammar mistakes... There is some problem that always prevent me from making generic code: ...
1
vote
1answer
33 views

Overriding abstract members of abstract classes

I have a base abstract class BasePerson. I have another abstract class BaseStudent and this inherits from BasePerson. Here is the example. public abstract class BasePerson { public string ...
2
votes
4answers
47 views

Inheriting abstract classes with abstract properties

I have base class with abstract properties. I want all inheriting classes to override abstract properties. Example: public class Person { public string Name{get;set;} public string ...
2
votes
2answers
55 views

How do I fix my STL style container to hold incomplete or abstract types?

A few days ago, I took it upon myself to try and write a basic tree implementation in the same style as the STL containers. Now I am trying to use it in my code, but two things don't seem to work that ...
0
votes
2answers
51 views

public variable in an interface?

I was reading this , and noted the second point in the question: An another interviewer asked me what if you had a Public variable inside the interface, how would that be different than in ...
1
vote
2answers
44 views

Linker error from not declaring abstract method in abstract base class?

I have an abstract base class Foo with an abstract method called bar. I'm calling bar from Foo's constructor. I'm expecting subclasses to override bar (it is abstract after all) and then Foo to call ...
0
votes
1answer
28 views

Get the right field from an abstract class hierarchy?

I have an Abstract class A public abstract class A{ private int x; public void doSomethingToX{...}; public int getX(){ return x; } I have 7 classes that extend A, each of the 7 ...
0
votes
3answers
48 views

Best approach to interface (abstract classes) design?

I've searched on this topic but couldn't really find a relevant answer... Suppose I have an abstract class declared like this : class Abstract{ virtual Interface* createHandle() = 0; ...
1
vote
3answers
51 views

How can I use abstract method in proper manner? [duplicate]

I am implementing library system as Exercise, in that I have created one abstract class : public abstract class RentalItem { ..... public RentalItem() { } public RentalItem(string ...
0
votes
1answer
42 views

extends and abstract quetsion

I create a general class called GeneraFriendsTable the code like this: public abstract class GeneralFriendsTable { public static String TABLE_NAME; public static final String COLUMN_ID = ...
0
votes
1answer
68 views

Untraceable error in c++ code involving classes

I've written a c++ program that contains the following classes: class Shape, Circle, Ellipse, Rectangle, Triangle. All the classes are a subclass of class Shape. They syntax of their definition is ...
0
votes
1answer
22 views

get object variables in abstract class

I have a abstract class which implements the JsonSerializable Interface. version 1: abstract class MyBase implements JsonSerializable { public function jsonSerialize() { ...
4
votes
4answers
72 views

How come an abstract class “DocumentBuilderFactory” allowed to instantiate new instance

Recently, I have been working with XML parsers. This is just beginning for me and I managed to understand how to use DOM parser classes in java i.e. DocumentBuilderFactory and DocumentBuilder to parse ...
1
vote
1answer
73 views

How do I specify the name of a JAXB element using Java generics?

I have a situation in which a Java object contains a generic Payload<T> that needs to be marshalled into xml. So given the following classes: AbstractBox @XmlTransient public abstract class ...
2
votes
5answers
34 views

Class instantiation - Abstract class or concrete class for variable

My question today is not a problem-solving question, but a best-practice theory question. I am getting familiarized with Joda-Time, and I read this in the user guide ...
0
votes
1answer
43 views

Abstract class : invalid abstract return type for member function ‘virtual…’

In my program I have such class hierarchy: #include <iostream> #include <cmath> #include <sstream> using namespace std; class aa; class bb; class root { public: virtual ...
0
votes
1answer
32 views

Providing abstract method logic it always should have

I have this abstract class: public abstract class Base { protected Timer timer = new Timer { AutoReset = false, Interval = 5000 }; private bool _isTimedOut = false; public bool ...
1
vote
1answer
31 views

Child objects in CouchDB with Java

UPDATE: Thanks funql/Kim. I understand the point you're making - so if you'll allow me a follow-up question, is there in fact a way of doing object persistence (as suggested by Funql for Mongo) using ...
5
votes
0answers
86 views

Which of these design patterns is superior? [migrated]

I find I tend to design class structures where several subclasses have nearly identical functionality, but one piece of it is different. So I write nearly all the code in the abstract class, and then ...
1
vote
1answer
37 views

Instantiating an abstract class in Rhino interpreter in Java Scripting

I am using javax.script.* with Rhino for scripting in a Java program. A script can implement an interface just fine, but when I try to use similar syntax to instantiate an abstract class(giving the ...
0
votes
2answers
78 views

how to call a concrete method of abstract class using reflection in java

public abstract class AbstractClass{ public String getName(){ return " AbstractClass"; } } public class concreteClass extends AbstractClass{ public String blahBlah(){ ...
0
votes
2answers
44 views

compilation of abstact class type pointer is successfull?

Compilation of following code is successful, it doesn't run though, i think since the pointer p might be having a virtual ptr but that vptr might not be having anything, that is why it compiles and ...
0
votes
1answer
66 views

.net MVC 4 RavenDB Unit Test Controller OnActionExecuting not firing

Using .Net MVC 4, RavenDB, MSTest. I followed the RavenDB documentation to create an abstract controller class that creates the RavenSession in OnActionExecuting(), and saves the data in ...
3
votes
2answers
68 views

Why does implementation of abstract class not see overloaded pure virtual function?

Given the following code example, why is the overloaded AbstractBaseClass::DoAThing( const char* ) not visible as an inherited method in the SomeEndClass that implements the overloaded pure abstract ...
1
vote
1answer
27 views

Ways to specify whether a feature is supported in contract

I have an interface -though it could also be an abstract class- that should allow its implementers to specify whether they support a particular feature and I'm looking for the best way to achieve ...
4
votes
3answers
117 views

Generic base class with multiple template specialized derived classes

I have a finite amount of classes with the nearly-same implementation, the only different being the underlying type of data they manipulate: class IntContainer { public: void setData(int data); ...
0
votes
2answers
75 views

Declare and implement pure virtual destructor in one line?

I am making a pure virtual destructor to force a class to be abstract that contains no methods apart from the ctor. I am doing this as a header-only implementation struct abstractSchema { ...
3
votes
0answers
24 views

In which order multiple abstract models are processed in Django [duplicate]

So I have this structure where I have multiple abstract Django models and all my models inherit one or more of these abstract models, for instance class BaseProblem(Base, Slugged, Ownable, Tagged) ...
0
votes
1answer
48 views

“hide” mutable objects with a factory method

I read some lines in Effective Java: Programming Language Guide Joshua Bloch and find out that I should avoid the usage of mutable objects. Because of I read the book I know how to make a mutable ...
-3
votes
4answers
86 views

How to print a void method from main method

Okay so I have three class abstract class Shape { int width, height; String color; public void draw() { } } // end Shape class `` class Rectangle extends Shape { ...
0
votes
3answers
61 views

Abstract method with strongly typed return type

Consider the following classes : public abstract class Animal { public abstract Animal GiveBirth(); } public class Monkey : Animal { public override Animal GiveBirth() { return ...
1
vote
0answers
39 views

PHP: Calling a 'setup' abstract method from an abstract class constructor; good or bad design?

I'm trying to decide the design pattern for a class structure I'm working with and I'm torn on the best way to implement the setup of the classes. One approach calls an abstract setup function in the ...
0
votes
1answer
57 views

Can i access a concrete method of an abstract class in direct child class?

Is there a way we can access the concrete method's of an abstract class in the direct child class as below abstract class ParameterBase { public void test() { ...
0
votes
1answer
33 views

Understanding Zend_Controller_Request_Abstract and other core Zend classes

I am digging deep into the Zend framework and at this point I am a little confused. I am particularly checking out the Zend_Controller_Action (*_Action), Zend_Controller_Request_HTTP(*_HTTP) and ...
-2
votes
1answer
78 views

What is an abstract class and what is Polymorphism? How and why do i use them? [closed]

What is an abstract or polymorphic class and what are their benefits? Why would one want to use such classes? What should I keep in mind when using such classes? Are there any rules to keep in mind ...
0
votes
1answer
53 views

Instantiating a sub-class of an abstract class

I'll get straight into it. Below is a code snippet from my GeneralSearch class I am implementing in an AI application for solving a word puzzle. I am wondering how to instantiate the subclass within ...
0
votes
2answers
31 views

Object of abstract class type “Rectangle” is not allowed

//QuizShape.h #ifndef QUIZSHAPE_H #define QUIZHAPE_H #include <iostream> #include <iomanip> #include <string> using namespace std; class QuizShape { protected: //outer and ...
5
votes
7answers
149 views

What is benifit of making a class abstract

Let's take an example, class base{ public: virtual void abstract() = 0; }; class derived:public base{ public: void abstract(){cout << "Abstract\n";} }; int main{ derived d; d.abstract(); ...
3
votes
3answers
70 views

Best practice - inherited variables set in derived classes

I have an abstract class containing methods that rely on class-level variables. However, the values of those variables are set in the classes that inherit from the abstract. I've written this so ...
0
votes
3answers
169 views

Abstract class getters and setters in java

So, to explain my code -> I have an abstract class of type Employee, it has its own fields, such as names. I then have the classes Admin, Sales and Manager that extend from Employee. these each have ...
2
votes
1answer
74 views

abstract base classes, multiple inheritence, and common pure virtual methods

The following test code seems to indicate that if a class has two abstract base classes with common pure virtual methods, then these methods are "shared" in the derived class. #include ...
-1
votes
2answers
347 views

C# Interview Questions about Abstract Class and Interface [closed]

I recently attended a C#.net interview with one MNC. They asked me so many questions about abstract class and Interface.I felt really a tough interview. I totally got confused and not sure with the ...

1 2 3 4 5 29