Tagged Questions
The abstract tag has no wiki summary.
20
votes
3answers
4k views
Why would one declare a Java interface method as abstract?
I used the "pull interface" refactoring feature of Eclipse today to create an interface based on an existing class. The dialog box offered to create all the new methods of the new interface as ...
18
votes
10answers
2k views
Static classes in PHP via abstract keyword?
According to the PHP manual, a class like this:
abstract class Example {}
cannot be instantiated. If I need a class without instance, e.g. for a registry pattern:
class Registry {}
// and later:
...
15
votes
5answers
7k views
Why does PHP 5.2+ disallow abstract static class methods?
After enabling strict warnings in PHP 5.2, I saw a load of strict standards warnings from a project that was originally written without strict warnings:
Strict Standards: Static function ...
14
votes
7answers
3k views
Why are C# interface methods not declared abstract or virtual?
C# methods in interfaces are declared without using the virtual keyword, and overridden in the derived class without using the override keyword.
Is there a reason for this? I assume that it is just ...
13
votes
9answers
697 views
Why does C# allow abstract class with no abstract members?
The C# spec, section 10.1.1.1, states:
An abstract class is permitted (but
not required) to contain abstract
members.
This allows me to create classes like this:
public abstract class A
{
...
13
votes
4answers
360 views
Derive abstract class from non-abstract class
Is it OK to derive an abstract class from a non-abstract class or is there something wrong with this approach?
Here´s a little example:
public class Task {
// Some Members
}
public abstract class ...
13
votes
4answers
6k views
The designer must create an instance of…cannot because the type is declared abstract
Visual Studio complains: Warning 1 The designer must create an instance of type 'RentalEase.CustomBindingNavForm' but it cannot because the type is declared as abstract.
Visual Studio won't let me ...
12
votes
4answers
130 views
Adding setters to properties in overrides
Why is it allowed to change the visibility and existence of getters or setters in a property when implementing an interface?
interface IFoo
{
string Bar { get; }
}
class RealFoo : IFoo
{
...
10
votes
5answers
2k views
Why not abstract fields?
Why can't Java classes have abstract fields like they can have abstract methods?
For example: I have two classes that extend the same abstract base class. These two classes each have a method that ...
10
votes
7answers
4k views
c# internal abstract class, how to hide usage outside assembly
I have a common assembly/project that has a abstract base class, then several derived classes that I want to make public to other assemblies. I don't want the abstract base class to show up from using ...
10
votes
2answers
4k views
How can I determine whether a Java class is abstract by reflection
I am interating through classes in a Jar file and wish to find those which are not abstract. I can solve this by instantiating the classes and trapping InstantiationException but that has a ...
8
votes
6answers
1k views
Java: static field in abstract class
I just start out with an example, that explains it best:
public abstract class A{
static String str;
}
public class B extends A{
public B(){
str = "123";
}
}
public class C ...
8
votes
2answers
1k views
8
votes
9answers
7k views
C#: Creating an instance of an abstract class without defining new class
I know it can be done in Java, as I have used this technique quite extensively in the past. An example in Java would be shown below. (Additional question. What is this technique called? It's hard to ...
7
votes
4answers
332 views
Python virtual classes: doing it right?
I have been reading documentation describing class inheritance, abstract base classes and even python interfaces. But nothing seams to be exactly what I want. Namely, a simple way of building virtual ...
7
votes
3answers
2k views
Why can't you call abstract functions from abstract classes in PHP?
I've set up an abstract parent class, and a concrete class which extends it. Why can the parent class not call the abstract function?
//foo.php
<?php
abstract class AbstractFoo{
...
6
votes
7answers
188 views
What is the use of 'abstract override' in C#?
Just out of curiosity I tried overriding a abstract method in base class, and method the implementation abstract. As below:
public abstract class FirstAbstract
{
public abstract void ...
6
votes
1answer
235 views
AbstractMethodError on calling Exception.printStackTrace
Inside a catch clause I want to print the strack trace of the exception:
try {
...
} catch (Exception exc) {
exc.printStackTrace();
...
}
But in some cases I don't get a stack trace and ...
6
votes
5answers
225 views
Difference between Hooks and Abstract Methods in Java
This is a quoted question from the study materials from my university.
It makes totally no sense to me.
For me hooks are specified points in (mostly sequential but not only) programs, where you can ...
6
votes
5answers
971 views
Should an abstract class have at least one abstract method?
Is it necessary for an abstract class to have at least one abstract method?
6
votes
2answers
952 views
Override abstract readonly property to read/write property
I would like to only force the implementation of a C# getter on a given property from a base abstract class. Derived classes might, if they want, also provide a setter for that property for public use ...
5
votes
2answers
342 views
Constructor injection into a base class using autofac
I have an abstract base controller which has a constructor I hoped would be populated by autofac when the controllers were built.
public abstract class BaseController : Controller
{
protected ...
5
votes
4answers
118 views
Large abstract base classes
I'm writing a large abstract base class with 30 something purely virtual methods*.
Finding all the functions to implement in a base class in the implementation classes is a little tedious, mostly ...
5
votes
2answers
298 views
C# Interface implemented by empty abstract class
Can I leave an abstract class that implements interfaces empty and imply that all the methods/properties in the interface are abstract within my class. It appears that I have to write them out again ...
5
votes
2answers
932 views
Best practices to test protected methods with PHPUnit (on abstract classes)
With PHPUnit and PHP >= 5.3 it is possible to test protected methods. The following page at stackoverflow outlined the best practice on it:
"Best practices to test protected methods with PHPUnit"
...
5
votes
1answer
229 views
javac claims that I'm not overriding a method in an abstract class implementation when I clearly am
I'll make this as short and to the point as possible, but it's kind of a complex issue. I'm writing in Java on a Linux platform, for whatever that's worth.
Short version of the goal: I want to have ...
5
votes
3answers
991 views
Using a Windows Form as an abstract class - which pattern to use?
I'm struggling with a situation that I come up again time and time again but I am not sure whether the way that I am doing things is wrong or whether I could be doing things in a different way.
An ...
5
votes
7answers
4k views
C#, implement 'static abstract' like methods
I recently ran into a problem where it seems I need a 'static abstract' method. I know why it is impossible, but how to work around?
For example I have an abstract class which have a description ...
4
votes
3answers
85 views
Array co-variance in C# generic list
I have an example where I want an abstract class interface to return something like this
abstract class AnimalProcessor {
public abstract IList<Animal> ProcessResults();
}
Then the ...
4
votes
2answers
119 views
Question on the initialization of abstract type class in scala
I define a class with abstract type as follow:
abstract class AbsCell2{
type T
val init: T
private var value: T = {
println("Hello "+init);
init
}
def get : T = ...
4
votes
1answer
309 views
How do I mock a method inherited from an abstract class with EasyMock?
I'm struggling with EasyMock. I've written two small classes to illustrate my problem:
public abstract class A {
private AtomicReference<Integer> id = new ...
4
votes
1answer
707 views
DataContract Serialize abstract class
I have an interface IServiceInfo and an abstract class ServiceInfo. There are several classes inherited from ServiceInfo, like CoreServiceInfo, ModuleServiceInfo etc. There is a service contract named ...
4
votes
3answers
1k views
C# abstract class static field inheritance
I feel like I skipped a C# class or two, but here's my dilemma:
I have an abstract class from which I derive multiple child classes.
I know for sure that for each of the child classes I will have a ...
4
votes
4answers
619 views
Benefits of using an abstract classes vs. regular class
I have decided to start doing small coding projects on my own that focus on code quality instead of code quantity and have a question about the use of abstract classes.
Now I know the differences ...
4
votes
3answers
878 views
How can I force a Constructor to be defined in all subclass of my abstract class
I have an abstract class A that define abstract methods. This means that, for a class to be instanciable, all the abstract method have to be implemented.
I'd like all my subclasses to implement a ...
4
votes
2answers
4k views
Best method of including an abstract in a latex 'book'?
I've been looking for the answer to this question for a while now but can't seem to find it, so I'm hoping someone on here can help me.
I'm writing up a thesis in Latex, and really like the ...
4
votes
8answers
182 views
should I name all my abstract classes AbstractFoo
Is it good practice to make sure that all abstract classes have names prefixed with "Abstract"?
4
votes
2answers
112 views
Visual / artistic representations of code
I don't know if there is a name for this. What I am interested in is what sort of graphical programs there are for representing code or code development in a high level, abstract and beautiful way.
...
4
votes
11answers
910 views
Interface or abstract class?
For my new Pet-Project I have a question for design, that is decided already, but I want some other opinions on that too.
I have a two classes (simplyfied):
class MyObject
{
string name {get;set;}
...
4
votes
13answers
442 views
How are people able to maintain their codebases?
I'd understand how if the codebase were good but more often it's more like a maelstrom.
In code I'm asking about the variable names are foobar, stuff is getting calculated even if never needed, lots ...
4
votes
5answers
537 views
Abstract base class or Interface? Neither seem right
Given the following code:
using System.Collections.Generic;
static class Program {
static void Main() {
bar Bar = new bar();
baz Baz = new baz();
System.Console.WriteLine(
"We have {0} ...
4
votes
5answers
6k views
How do I create an abstract base class in JavaScript?
Is it possible to simulate abstract base class in JavaScript? What is the most elegant way to do it?
Say, I want to do something like: -
var cat = new Animal('cat');
var dog = new Animal('dog');
...
4
votes
6answers
665 views
What (not) to declare when implementing an interface with an abstract class?
I have an interface A, for which I have to supply a few different
implementations. However, those implementations share some helper methods, so
I moved those methods to an abstract base class.
...
4
votes
3answers
11k views
Java - Abstract class to contain variables?
Is it good practice to let abstract classes define instance variables?
public abstract class ExternalScript extends Script {
String source;
public abstract void setSource(String file);
...
3
votes
2answers
68 views
Ocaml : Passing constructor type between modules
I have this module type :
module type MOD =
sig
type operand
type op
val print : op -> string
end;;
An implementation of MOD is :
module M1:MOD =
struct
type operand = Mem of int | Reg of ...
3
votes
3answers
70 views
How to define a virtual getter and abstract setter for a property?
This is essentially what I want to do:
public abstract class Uniform<T>
{
public readonly int Location;
private T _variable;
public virtual T Variable
{
get { return ...
3
votes
2answers
113 views
Why doesn't the descendent's version of an abstract base class's method get called?
I'm trying to create a simple class THistory that has one procedure that takes an abstract base class which implements a simple interface.
The code below compiles, but the THistory class calls the ...
3
votes
2answers
80 views
Self-type annotation hinders instantiation of inner class. Why?
Given the abstract definitions of the Outer class and its Inner class I would like to instantiate the concrete Inner1 class defined within Outer1 trait.
abstract class Outer {
type Inner_Tp <: ...
3
votes
6answers
168 views
Why can't you have a protected abstract class in Java?
I have an abstract class which looks like:
abstract class AbstractFoo implements Bar {
//Code goes here
}
However when I try to make AbstractFoo protected I get an error compile time error ...
3
votes
1answer
107 views
Riddle me this: why does the implicit interface implementation error occur?
Consider the following lines of code:
public interface IProduct
{
string Name { get; set; }
}
public interface IProductList
{
string Name { get; }
IProduct GetValueObject();
}
public ...