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 ...
2
votes
5answers
54 views
abstract classes which implements an interface uncomplete
For example I have an interface with 4 methods.
If I implement this interface incomplete in a class, the class must be abstract. Right?
For example, I leave one method out. So now I am writing a ...
0
votes
0answers
5 views
Abstract Class and @Inject
I'm writing a web application and i need for many controller and DAO. I created the classes like you can see here (Class Diagram)
. The problem is that i would like the CSCIControllerImpl class ...
4
votes
8answers
75 views
Abstract class with all methods abstract - Practical Example
I am asking a very basic question and it may be marked duplicate (I could not find the answer though):
Is there any practical example of an Abstract Class with all the
methods declared as ...
4
votes
4answers
66 views
Preventing subclasses from adding methods
This might seem like an odd thing to want, but is there a way in Java to stop subclasses from adding new methods (including constructors) whilst still allowing subclasses to override methods?
The ...
0
votes
1answer
23 views
Check List for an Abstract Quality in Mathematica
I'm working with a list in Mathematica generated by the FactorList function that looks like
t = {{-1, 1}, {q, 1}, {P[41, 42], 1}, {P[41, 43], 1}, {P[42, 43], 1}}
I would like to search through this ...
1
vote
2answers
62 views
Why this difference in creating reference type object of an abstract class and accessing its own members?
Consider i have an abstract class with a non-abstract method in it.. i tried creating reference type object and access that non-abstract method.. it gives me a compilation error.. The following ...
0
votes
2answers
54 views
How to create a C++ virtual function in abstract class allowing to return any kind of type
I've coded an abstract class A.
Is there a possibility to create a virtual function value(), which will return "whatever" and when we create a derived class B implement here function value() and ...
0
votes
5answers
45 views
I know, we can not instantiate either an interface or an abstract class in java except using anonymous class method but what is the reason behind it?
I know, we can not instantiate either an interface or an abstract class in java except using anonymous class method but what is the reason behind it?
Thank you !!
1
vote
1answer
20 views
PHP design- abstract classes and factory methods
I am trying to work out the best way to design my classes and I think abstract classes it the right way here, but I'm not sure! I am building a plugin for Wordpress carts that at the moment, will work ...
3
votes
3answers
54 views
Is it poor design to declare a class abstract because it only has static members?
I have a class in my project that is used to load external resources (namely, images and audio files). This class only has a few members: HashMap fields for storing resources, and getImage(reference), ...
1
vote
5answers
41 views
Java abstract classes which throw
If I have an abstract class with the following function -
abstract class A{
void foo(String s) throws Exception{
throw new Exception("exception!");
}
}
And then another class that ...
0
votes
1answer
41 views
Accessing Abstract Class Methods C#,ASP.net
I have the following classes in my program and now I want to access the method M2() present in the class Y. I tried to access it by creating the object of class Z and then casting it with variable of ...
0
votes
2answers
85 views
C++, abstract class and inheritance
I'm trying to process classes instance two by two.
I have a abstract base class (IBase here) that contains a doStuff method.
This method will be overriden in extended class in order to process all ...
-1
votes
1answer
16 views
Abstract class as TItem in another class
The following statement returns an error:
public class MySortedList<TKey, TItem> where TKey : struct, TItem : MyBaseClass<TKey>
MyBaseClass is defined as follows:
public class ...
0
votes
2answers
40 views
Is this a good PHP OOP structure for a Database Implementation?
I have a series of Classes:
abstract class Database extends PDO {}
abstract class OracleDatabase extends Database {}
abstract class MySQLDatabase extends Database {}
abstract class MSSQLDatabase ...
1
vote
1answer
22 views
Abstracting DataTables and DataRows
Every class in my BLL has the following function:
private void FillList()
{
MyDataSet.MyDataTable dt = MyTableAdapter.GetList();
foreach (MyDataSet.MyDataRow row in dt)
{
...
2
votes
2answers
42 views
How to implement flag for execution of abstract PHP method?
I have part of abstract base class that looks like this:
abstract class Fragment_Cache {
static $in_callback = false;
abstract public function callback( $name, $args );
}
I need to flip ...
1
vote
2answers
87 views
Why doesn't Visual Studio mark it as an error when I implement an abstract method? [closed]
Why does this compile?
public abstract class Thing
{
public abstract void ActualWork()
{
Console.WriteLine("this should be impossible to execute");
}
}
Shouldn't abstract ...
-2
votes
1answer
52 views
Java Referencing Abstract Classes
I am trying to create a game in Java and within this game I am trying to implement a quest / mission system. I have come up with an idea to do this, but I am not sure how I would reference the quests ...
-1
votes
1answer
53 views
in oop can we use both final and abstract for one class? for php [closed]
I'm not sure if it's possible.
final abstract class Human{
}
let's say that's my class. I know that I tried that I will get an error when I'm trying to create an object in child class.
But just ...
1
vote
2answers
33 views
FxCop CA1047 - Abstract and accessibility level
I have this code (sample to reproduce):
public class ObjectBase<T>
{
}
public abstract class ExportBase
{
public void ExportData<T>(string path, T data, string filename)
...
0
votes
2answers
49 views
Inheritance - passing parameters to method VS using inherited proprieties
I am really confused about this, i know that it's more reasonable to pass a parameter to a method, but when you use Inheritance all variables are exposed:
public abstract class HttpRequestBase
{
...
0
votes
1answer
39 views
Transitioning to an abstract class
I am desperately trying to implement some things which I don't think I fully understand. I am attempting to set it up so the commented out actions can be taken (I will need to change syntax but I want ...
0
votes
0answers
14 views
Symfony 2.1 handle and store one-to-abstract-one relationship
I have a situation like this:
I have an entity human and a form to type in the data for humans.
The human can have a pet that can be a cat or a dog.
So i generalized cat and dog to a petAbstract ...
1
vote
1answer
67 views
How to make use of abstract method overriding?
I am learning C# but I have found a problem with going further. I have code like so:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ...
0
votes
3answers
82 views
How to make PHP class, extending an abstract class, require a more specific type
I don't even know if this is possible, but say I am using the Table-Data-Gateway pattern. All of my models which aren't Mappers or DB_Table classes extend Model_Base. All of my mappers extend ...
0
votes
5answers
69 views
Instantiating interfaces in Java
I have this interface:
public interface Animal {
public void Eat(String name);
}
And this code here implements the interface:
public class Dog implements Animal {
public void Eat(String ...
0
votes
1answer
26 views
Designate all python abstract class properties/methods as abstract without decorator for each one
I have an abstract class like so:
class SomeAbstract(object):
__metaclass__ = ABCMeta
@abstractproperty
def one(self): pass
@abstractproperty
def two(self): pass
...
-4
votes
0answers
45 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
10 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
22 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
8 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 ...
-6
votes
2answers
133 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
31 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
66 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
43 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
58 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
77 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 ...
1
vote
1answer
59 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
47 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
41 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
1answer
21 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
84 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
24 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
19 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
72 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
98 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
64 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
74 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
51 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;
...







