The interface-inheritance tag has no wiki summary.
0
votes
0answers
35 views
Interface Inheritance (Java Program): meaning of each line of the program?
I'm just preparing for my exam. help me to explain every line of this program:
interface J {
int j = 200;
int j1();
}
interface K {
double k1();
}
interface L extends J,K{
boolean ...
7
votes
3answers
512 views
How to do proper Reflection of base Interface methods
I have 2 interfaces and 2 classes that I investigate via Reflection:
IParent
IChild - derives from IParent
Parent
Child - derives from Parent
Strange thing for me is the fact that when I look ...
19
votes
2answers
362 views
Why does dynamic binding fail when using interface inheritance?
In C#, please does anyone know why I can't do the following? (specifically the line marked 'NOT fine!' below)
interface A
{
void Add(dynamic entity);
}
interface B : A {}
class C : B
{
...
1
vote
2answers
82 views
Is interface inheritance the right thing to do here, and why does it not work?
I'm implementing some type (MyType in the example below) which has a Collection property. Inside MyType I don't really care what kind of collection this is. The only thing I care is that it implements ...
1
vote
1answer
247 views
Interfaces, Inheritance and the 'new' keyword
I am wondering if someone can please explain this to me:
class Program
{
static void Main()
{
AnotherDerivedClass d = new AnotherDerivedClass();
...
5
votes
6answers
375 views
.NET C# Explicit implementation of grandparent's interface method in the parent interface
That title's a mouthful, isn't it?...
Here's what I'm trying to do:
public interface IBar {
void Bar();
}
public interface IFoo: IBar {
void Foo();
}
public class FooImpl: IFoo {
void ...
1
vote
1answer
318 views
Interface inheritance issues in one-to-many relationship in Entity Framework
I have a domain model specifying the interfaces or my domain and I'm using DI to hook it up to an entity framework 4 repository implementation. In my domain I have the following:
public interface ...
1
vote
1answer
170 views
Why doesn't interface inheritance work when writing shell extensions in c#?
According to this article about writing shell extensions in .Net, inheriting the shell interfaces as you might naturally do when writing code doesn't work. I've observed this in my own code as well.
...
5
votes
2answers
187 views
Casting and interface inheritance
Each item has an interface, IItem. As well as this, there is a interface known as IDrawableItem which inherits from Item.
The code below, is trying to draw a drawable item, but cannot as the ...
0
votes
2answers
171 views
Interface Inheritance and Sub-Interfaces
interface IA : interface IB
{ ... }
So IB is the parent interface of IA, IA is the _ of IB. What should be put in the blank? sub-interface?
2
votes
5answers
498 views
Interface inheritance - a good thing?
I've just used it for the first time - consider:
IGameObject
void Update()
IDrawableGameObject : IGameObject
void Draw()
I had a level class which used DrawableGameObjects - I switched ...