abstract is a keyword shared by a multitude of object-oriented programming languages. Methods and classes can be marked abstract to indicate that they do not contain the full implementation of application logic and have to be extended. Abstract classes can not be instantiated and serve the purpose ...
-4
votes
0answers
41 views
abstract class with abstract variables and functions [closed]
I'm building an abstract class in C# asp.net for my BLL, MyClass<TKey, TItem> where TKey is int or short in most cases and TItem is a local class.
The class will include:
SortedList<TKey, ...
0
votes
0answers
8 views
Best practice for abstract @MappedSuperclass @ManyToMany reference
I have the following entity classes (relavent parts only):
@Entity
@Inheritance(strategy = InheritanceType.SINGLE_TABLE)
@DiscriminatorColumn(name = "SUBJECT_TYPE")
public abstract class SubjectEty ...
0
votes
0answers
17 views
dynamic casting to unknown derived class
What is the best way to be able to cast a dynamic object to an unknown object type.
public abstract class VehicleBase{ }
public abstract class Car : VehicleBase { }
public abstract class Truck : ...
0
votes
0answers
6 views
How to multi inherit abstract classes with a controlled process?
Not sure if my title is fitting to the nature of my question, but here is what I am trying to do...
Trying to build a custom TestCase object class for a custom UI testing framework and I need to ...
-2
votes
2answers
84 views
Which is preferred: abstract class vs interface vs mixed?
I came across few design constructs in a large application:
independent use of abstract classes
independent use of interfaces
abstract class implementing an interface
interface extending an abstract ...
-1
votes
1answer
23 views
Paths.get()… in other words, If you follow the trail you get lost
In my code I have this instruction:
Path p1 = Paths.get("c:\\java\\");
Being Path just an interface, I was wondering what get() was doing inside. So I opened the source code in Path.class and ...
0
votes
2answers
55 views
Abstract/Virtual Functions in java
I've heard that all Java functions are implicitly virtual, but I'm still not sure if this will run how I want.
Suppose I have a class A, with child B.
both A and B have functions called foo(), so B's ...
1
vote
1answer
23 views
Abstract Error with JButton and Cannot Find Symbol on interface class
I'm working on a simple Java GUI, but an error came out about abstract methods. I marked the codes that has an error with a comment ERROR - etc. The interface class is at the bottom, which also has an ...
1
vote
2answers
45 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
4answers
67 views
How do I call a function in an abstract class?
I'm still new to Java and there are some concepts that still confuse me. I'd like to run vibrate in the strummer class from my main class. The vibrate method cannot exist in my main class as it is an ...
2
votes
1answer
49 views
How does System.Drawing.Image class work?
I was wondering why it is possible to set the Image property of a PictureBox, when the Image class is an abstract class, and therefore cannot be instantiated.
Does the Image.FromFile() method create ...
1
vote
3answers
33 views
Does a function wait for a called function to complete before continuing?
So basically in the below example, if function1 is ran will it wait until function2 is finished running before test equals 1? Or will it execute function2 on a separate "thread" essentially running ...
2
votes
3answers
36 views
Class is not Abstract and does not Override error in Java
I am struggling as to what my problem is here, it is not my program, but I am trying to run it to better understand the system that implements the JSR-82 stack,
The error that I am receiving is a ...
1
vote
0answers
10 views
BTree Complexity based on M and L and based on order of insertion and deletion
What are the big Oh for BTree that depends on M = the number of keys and L = the number of leaves?
How does BTree deal with deleting in order and in reverse order?
I am doing an analysis on how the ...
1
vote
1answer
55 views
delphi-shortcut to implement interface method and abstract method from ancestor interface or class
I have example code like this
IExample=interface
procedure Test;
end;
TBaseClass=class
function Check:boolean;abstract;
end;
TExampleObject=class(TInterfacedObject,IExample)
end;
...
0
votes
2answers
23 views
Calling specific descendant of interface in an implementation of another interface
I have an interface iClass defined. One method in the interface takes another interface, iObject, as an argument.
In one specific implementation of iClass, I need the method to take a specific ...
0
votes
0answers
14 views
Code::Block debugger step into a function of and then segmentation fault
Compiler: mingw
OS: windows XP
#include <iostream>
class DataType1 {
private:
int d1;
int d2;
public:
DataType1() : d1(0), d2(1) {}
DataType1(int x, int y) : d1(x), d2(y) { }
...
0
votes
2answers
47 views
Java abstract variable (superclass use subclass's String)
I have an abstract class Loader:
public abstract class Loader
{
private String EXTENSION = ".xxx";
private String dir;
public abstract Object load(String file);
public abstract ...
0
votes
6answers
79 views
C# Override an abstract class' function with a different one with a “Class Type” return type
I am trying to create a class based on an abstract class and overwrite a function contained in the base class with another one that has a return type of "T" which is a type passed by the class.
e.g:
...
1
vote
5answers
53 views
What do you do when a subclass can't implement an interface method because the superclass has a final method with the same signature?
Let's say you have a class that extends Activity and implements MyInterface, where Activity contains public final void setProgress(int progress) and MyInterface contains public abstract void ...
0
votes
4answers
51 views
non abstract methods of abstract class thread safe
I have an abstract class with non abstract methods. I want to know if these non abstract methods are thread safe by default?
To make the question more clear, here is an example
public abstract ...
0
votes
2answers
42 views
calling a function in multiple derived classes in c#
How can I call a function in all derived classes when a global game state changes?
public abstract class GameStateBehaviour {
public event EventHandler<GameStateEvents> StateChanged;
...
-1
votes
1answer
39 views
How can I force the redefinition of a constructor?
is there any possibility to force the redefinition of a constructor?
I have a base abstract class
public abstract class AbstractBaseClass {
private AStrategy as;
private ...
0
votes
5answers
59 views
Trouble with abstract classes in c++
main:
#include <iostream>
#include <string>
#include "serviceChargeChecking.h"
int main()
{
serviceChargeChecking newAccount("Crim", 111222, 50.00, 100, 1.00);
...
0
votes
0answers
11 views
Using Abstract Types in XSD
I have an abstract complexType with two attributes (length and position) defined as below
<xs:complexType name="abstractFieldType"
abstract="true"
...
0
votes
1answer
30 views
java writing abstract method for button/creating abstract button
I have a little problem with java application I'm writing. I need a button which will be activate when I will be pressing it, not when I will press it (not after mouse release - too late). I need that ...
-3
votes
0answers
29 views
Access Member of abstract class
I currently have a problem, accessing a protected member within the base class.
My classes look like the following:
class A
{
...
public:
void SetMember(Member* p)
...
-1
votes
0answers
33 views
Questionnaire/Form Design [closed]
I'm currently designing a questionnaire for a site that will allow users to enter in data pertaining to their career history. I'll have fields for contact info, previous employment, education ...
2
votes
1answer
46 views
Declaring concrete method in abstract class
I need to override toString() method for all of the concrete method of my abstract class - exactly the same in all cases. So here is what I want to do (SomeEnum is a separate class which has just an ...
0
votes
1answer
53 views
InputStream and OutputStream abstract methods
I've been exploring the java.io package a lot lately, and I've been wondering where can I find the exact processes that the abstract classes inside InputStream and OutputStream do.
I'm dazzled ...
1
vote
2answers
52 views
override an abstract function with a virtual one?
Basically i'm asking how best to do this properly based on what I THINK I want.
I have a weapon class which is abstract because it contains methods like Fire() that are so general (lasers vs bullets) ...
0
votes
5answers
79 views
Use of abstract classes, interface and List in C#
I have the following code sections and I am trying to implement a method that returns a list. My structure is as follows : abstract class "Coordinates" -> public class "YCoordinate" with my interface ...
3
votes
1answer
49 views
Is it possible to throw an abstract exception using Mockito?
I have a use case where I'm trying to ensure that an abstract exception is thrown when a particular method is called in my class.
I am using Mockito to do this, but have noticed that Mockito is ...
1
vote
3answers
85 views
error LNK2001: unresolved external symbol - when creating abstract class c++
UrzadzenieElektroniczne is my abstract Class and class Komputer inherits from it. I still get errors. I tried to fix them but none of the resolutions I found on the internet worked. Is there a problem ...
0
votes
1answer
19 views
Do I need to create an abstract method for toString and equals?
so my program is creating Quadrilaterals, and I was told to make abstract methods for findArea() and findPerimeter(), but do I need them for toString() and boolean equals method?
abstract public ...
0
votes
1answer
45 views
DRY serialization in C#: abstract, delegates or reflection?
I'm (de)serializing some datastructures for a network-multiplayer game, and for each datastructure that's to be (de)serialized, I want to define the order of (de)serialization only once for ...
2
votes
4answers
68 views
Get current class at runtime in a static method?
How can I get the type (not a name string, but a type itself) of the current class, in a static method of an abstract class?
using System.Reflection; // I'll need it, right?
public abstract class ...
0
votes
3answers
51 views
java - Abstract base enum/class for singleton
I've created two enum classes as singleton:
public enum A {
INSTANCE;
public void init(param p1, param p2) {
}
public void connect() {
}
public void disconnect() {
}
...
-6
votes
0answers
60 views
Write an abstract super class encapsulating a vacation [closed]
Write an abstract super class encapsulating a vacation: A vacation has two attributes: a budget and a destination. It has an abstract method returning how much the vacation is over or under budget. ...
0
votes
2answers
86 views
Abstract C++ functions
I have a little problem with an exercice... I got 2 classes :
The first :
namespace Abstract{
class AbstractClass{
public:
virtual void setName(const std::string & _name) =0;
...
1
vote
1answer
59 views
Abstract class and object
I got a first class :
namespace Abstract{
class AbstractClass{
public:
virtual void setName(const std::string & _name) =0;
virtual void print() =0;
void ...
1
vote
2answers
59 views
Abstract fields aren't allowed. How do I force a derived class to instantiate/initialize a field?
I have an abstract base class for a generic 'Device' type and would like to require the derived specific device classes to initialize a list based on their respective differences.
When one sets the ...
0
votes
0answers
39 views
Five elements of abstraction scheme
What are the five elements of abstraction for scheme when creating a new abstract data type such as "set" or "point-list?"
I know two.
1) primitive data elements
2) mutators
I think the remaining ...
0
votes
0answers
37 views
Static 'constructor' in abstract static context
I'm having a problem. Basically what I want to di is use a static constructor to return a instaniated object with the parameters passed to this static function (which acts like a constructor).
So ...
3
votes
1answer
72 views
stopping a `const` member from being edited under another alias
I have a class with an const abstract member. Since it is abstract, the object must reside in a higher scope. However, it may be edited in this higher scope. I have made this MWE, and added comments ...
1
vote
7answers
166 views
Subclass-specific code - should I use abstract base class methods or an interface?
I have a super-class, Animal, with two subclasses, Cat and Dog. Dog and Cat both need to have specific methods for speaking and moving. Here are two alternatives for achieving this:
Animal will have ...
0
votes
2answers
48 views
abstract static classes in java giving error illegal combination of modifiers
abstract class AbstractCase2 {
abstract static void simpleMethod1();//giving error
}
class Case2 extends AbstractCase2 {
static void simpleMethod1() {
System.out.println("Within ...
0
votes
1answer
60 views
Polymorphism and abstract parent class
In the practice I am doing now I have 3 classes in the hierarchy:
Employee (abstract class)
Worker extends Employee
Manager extends Employee
I have an additional class who uses those 3 classes: ...
0
votes
1answer
52 views
Instantiate abstract class workaround
So since I will use various types of graphs I decided to put common behavior in abstract classes:
public abstract class Graph {
private List<Node> nodes;
private List<Edge> edges;
...
-1
votes
1answer
41 views
How can i create an Abstract method for calculations?
For a final project in java this semester we need to create a GUI program that will calculate how much money you owe a couple different loaners after borrowing money from them.
So I created my Java ...





