Tagged Questions
The concreteclass tag has no wiki summary.
6
votes
12answers
2k views
internal member in an interface
I have a list of objects implementing an interface, and a list of that interface:
public interface IAM
{
int ID { get; set; }
void Save();
}
public class concreteIAM : IAM
{
public int ...
4
votes
3answers
3k views
2
votes
4answers
35 views
Returning interface but concrete may have properties not on the interface, can I get them with a cast?
I have a feeling that my use of an interface is incorrect. I know that an interface is a contract that the concrete class has to adhere to.
So I will explain the problem I am trying to solve and ...
1
vote
4answers
320 views
.NET: Select concrete classes using config file
(This question specifically in C#, but applies generally to .NET)
I have a largish application that has a fairly good design, and is broken into major sections over interfaces (this was done to ...
0
votes
2answers
192 views
Concrete Class implements a interface. Typecasted to Interface later. How does JVM recognize the Typecasted instance?
A Concrete class typecasted to interface, does JVM still consider it a instance of concrete class ?