Abstract classes are classes which cannot be instantiated. They exist to provide common functionality and interface specifications to several concrete classes.
0
votes
2answers
40 views
How to substitute an abstract class with an interface in Java?
I have an abstract class Work with two abstract methods (init and work) and one concrete method (run) working with the abstract methods.
class work
{
abstract static class Work<T> ...
1
vote
3answers
37 views
Java overriding abstract method design strategy
I have such classes:
abstract class Person{void toDrink(Liquid l);}
class Liquid{}
class Alcohol extend Liquid{}
class Milk extends Liquid{}
class Adult extends Person{void toDrink(Liquid l){}}
...
0
votes
2answers
22 views
Class diagram usage in UML
As I read through
" Unified Modeling Language User Guide,
Grady Booch ,James Rumbaugh ,Ivar Jacobson
Publisher: Addison Wesley
First Edition October 20, 1998 "
that :
You use classes to ...
0
votes
2answers
46 views
Designing a writer for different file formats in C# (interface vs. class vs. abstract class)
In a C# application I have an array of strings like this:
string[] myArray = GetStrings(source);
Now I would like to write the content of this array to a file in different formats as e.g.
flat ...
3
votes
2answers
57 views
Implement abstract methods with a def macro
It seems to be impossible to implement abstract methods via def macros:
import scala.reflect.macros.Context
import language.experimental.macros
trait A {
def foo(): Unit
}
object AImpl {
def ...
0
votes
2answers
52 views
Bypass one of the methods of abstract class in derived class without making derived class an abstract class [closed]
I am deriving a class from base abstract class. My abstract class has four abstract methods.
I don't want to override all methods in derived class. How should I do that, without declaring the derived ...
-6
votes
0answers
49 views
What are Interfaces and Abstract classes in Java? [duplicate]
What are interfaces and abstract classes in Java?
What are the differences between them?
0
votes
2answers
38 views
Abstract class inheriting from non-abstract in .NET?
I'd like to know if a subclass of a concrete (that is, not abstract) class can be abstract or not. In a fictitious example:
public class HistoricallyManaged<SpecificType>
{ // code to manage ...
0
votes
1answer
34 views
Mimic Python (pure) virtual functions like C#
What is the best way in Python to mimic virtual and pure virtual functions like in C#?
Currently I use a schema like:
class AbstractClass(object):
'''Abstract class'''
def __init__(self):
...
1
vote
2answers
30 views
Programming for MySql and MSSql in VB.NET
I have a program written in VB.NET that as part of its function requires the use of a number of database classes.
At the moment the classes are programmed specifically to use objects originating ...
1
vote
2answers
75 views
How to iterate through a list of different objects?
note: I'm under an NDA so I have to use variable names that dont make sense. Sorry
Hello!
I have an abstract class:
public abstract class A {
public abstract List<String> someMethod();
}
...
0
votes
1answer
19 views
DLL Export and virtual methods
In a Windows project we define an interface class
class Interface {
public:
virtual ~Interface() { }
virtual void func() = 0;
};
and a factory function
__declspec(dllexport) Interface ...
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 ...
-1
votes
3answers
41 views
How can I create a subclass of an abstract class automatically in Eclipse in Java?
say I had an abstract java class in eclipse. Now I want to create some subclasses of that abstract class. Is there a way to create them automatically where I just enter the name of the class and ...
0
votes
2answers
41 views
abstract class with private functions
I just saw a abstract class and it has a few private functions...
I am just curious what's the point of private functions for an abstract class?
I assume the children will not have them. Then what's ...
1
vote
3answers
48 views
what must be implemented from an abstract class in java?
I have two questions really. I'm trying to get a handle on how inheritance works.
If I have an abstract class to inherit from, and it has a method that is not labelled abstract does this method still ...
3
votes
2answers
58 views
OOP abstract classes when to implement abstract methods
I'm trying to learn OOP in PHP, for now i have reached the abstract classes.
I have some problems understanding when should I implement abstract methods in the abstract class and when I should not.
...
0
votes
0answers
20 views
I got an Error “ 'Piksel\Modules\DB\PDO' not found ” for abstract class namespace
I want to use namespace for may project but I have a problem with it.
I got an error like that
"Fatal error: Class 'Piksel\Modules\DB\PDO' not found in
...
0
votes
1answer
32 views
Abstract properties or base constructor parameters? [closed]
Which method should I prefer and why? Is there any real difference?
Abstract property:
abstract class Table
{
public abstract string Title { get; }
}
class InfoTable : Table
{
public ...
0
votes
2answers
45 views
c# abstract class contructor [duplicate]
I'm studying C#. I have some concerns about the abstract class. abstract class does not allow to create instance. Why does c# support constructor for abstract class. What is the main purpose here?
...
0
votes
1answer
31 views
Java unmarshilling JSON data containg abstract type
We are using Jersey/Jackson to unmarshall JSON data to java DTOs. One of my DTO is an abstract class, and i would like to unmarshall the JSON data to one of his extended DTO. For example, assuming i ...
-4
votes
1answer
57 views
Why is ClassLoader an abstract class? [closed]
ClassLoader is an abstract class, even though it doesn't have any abstract methods. Why is that so? Are there any other abstract classes without abstract methods?
2
votes
4answers
30 views
Creating an object of abstract class URLConnection or HttpURLConnection in Java
I saw the following code in a tutorial:
URLConnection connection = new URL("http://example.com").openConnection();
How is that possible? The API says that URLConnection (and also the Subclass ...
0
votes
2answers
68 views
Scala pass trait to abtract class
I would like to pass a trait to an abstract class using scala, this is what I have so far :
trait User extends VertexFrame {}
trait Member extends VertexFrame {}
object Member extends Base[Member] ...
0
votes
1answer
20 views
Problems Creating My Own UITableViewController Abstract Class
I am creating a custom UITableViewController (SATableViewController) class that I can inherit from that will alert me as to when I should resign first responder from text fields, etc.
However, upon ...
1
vote
4answers
61 views
When do we need abstract classes, if we can use composition for sharing code, plus interfaces for polymorphism?
I understand the advantages of composition over inheritance. Among others, it makes unit testing (and mocking) easier, your code is not coupled with base class etc. I've also watched nice talks about ...
1
vote
6answers
90 views
When do I have to use interfaces instead of abstract classes?
I'm new to programming and trying to understand oop.
I was wondering when I should use interfaces.
Lets think about the following:
public abstract class Vehicle {
abstract float getSpeed();
}
...
1
vote
2answers
56 views
Do I need to declare methods of abstract class in respective interface?
In my application I have activities of 2 types, Hotel and Restaurant which I have implemented as abstract classes. I need to call a method which is on the HotelClass but the IDE tells me to create a ...
0
votes
0answers
29 views
Android source code, Java trace, abstract class
i would like to find out what exactly the Activity.java's setContentView() method is calling/doing.
Here is the Android source code and the code stub at line 1646:
public void setContentView(int ...
2
votes
1answer
72 views
Why does classOf[…] says 'not found: type foo' in this case?
In my example I want to be able to return the classOf[frame] instead I get an error not found: type frame.
trait User extends VertexFrame {
...
}
object User extends Base[User] {
...
}
abstract ...
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 ...
1
vote
1answer
25 views
Initializate variables in abstract constructor class
i have a abstractclass "HotelReviewClass" & "RestaurantReviewClass" where i want to initializate the variables which are not commun and commun go to "super" class
BUT i have a error "constructor ...
2
votes
1answer
47 views
Some Java helps with the Android source please?
For here the Android source of Activity.java.
In particular, the setContentView() method at line 1646:
public void setContentView(int layoutResID) {
getWindow().setContentView(layoutResID);
}
...
4
votes
2answers
127 views
The ' this ' keyword in abstract classes
I am slightly confused towards why I am able to use the 'this' in abstract classes.
I am making a very very simple object oriented role playing game. I have a base/super class called Items. I then ...
1
vote
2answers
77 views
Java interface extending an abstract class?
I am posting a code snippet that does not give any syntax error when an interface extends and abstract class. The interface audio extends abstract class music in the method sort()
import ...
0
votes
2answers
55 views
C++ equal method in an abstract class
I'm developing a chess game. So, I created an abstract class called Piece and the real pieces implement this class, So I have concrete classes like Pawn, Rook...
The problem is: I need an equal ...
0
votes
2answers
45 views
Instantiation of an abstract class in its member method
In a code base using Factory Pattern, an abstract class is instantiated as an argument of its member method. If abstract classes can't be instantiated , how is this pattern using it? Is there any ...
1
vote
2answers
37 views
c# run method from abstract and inheritor with a single instance
Is there a way I could run my method from an abstract class without explicitly running it(I mean I have the same method name which would inherit it and what I want is to run both the one from the ...
1
vote
3answers
31 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
24 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
46 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
60 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
38 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. ...
1
vote
4answers
57 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
85 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
53 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
66 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
41 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
59 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
65 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 ...






