42
votes
20answers
2k views
How will I know when to create an interface?
I'm at a point in my development learning where I feel like I must learn more about interfaces.
I frequently read about them but it just seems like I cannot grasp them.
I've read examples like: …
34
votes
7answers
4k views
C#: Interfaces - Implicit and Explicit implementation
What are the differences in implementing interfaces implicitly and explicitly in C#?
When should you use implicit and when should you use explicit?
Are there any pros and/or cons to one or the …
17
votes
17answers
1k views
What does it mean to “program to an interface”?
Hi,
I have seen this mentioned a few times and I am not totally clear on what it means. When and why would you do this?
I know what interfaces do, but the fact I am not clear on this makes me …
17
votes
21answers
1k views
Interfaces: Why cant I seem to grasp them?
Could someone please demystify interfaces for me or point me to some good examples. I keep seeing interfaces popup here and there but i havent ever really been exposed to good explanations of …
15
votes
14answers
765 views
When are interfaces needed?
(In the context of .NET for what its worth)
I tend to not use inheritance and rarely use interfaces. I came across someone who thinks interfaces are the best thing since spit. He uses them …
15
votes
15answers
1k views
Why do most Java system architects insist on first coding to an interface?
I'm not asking this question out of spite, but I really want to know, because I might be missing something. Almost every Java book I read talks about using the interface as a way to share state and …
13
votes
6answers
936 views
Why collections classes in C# (like ArrayList) inherit from multiple interfaces if one of these interfaces inherits from the remaining?
When I press f12 on the ArrayList keyword to go to metadata generated from vs2008, I found that the generated class declaration as follows
public class ArrayList : IList, ICollection, IEnumerable, …
12
votes
1answer
882 views
The difference between the Runnable and Callable interfaces in Java
What is the difference between using the Runnable and Callable interfaces when designing a concurrent thread in Java, why would you choose one over the other?
11
votes
11answers
595 views
Practical side of the ability to define a class within an interface in Java?
What would be the practical side of the ability to define a class within an interface in Java:
interface IFoo
{
class Bar
{
void foobar ()
{
…
11
votes
6answers
708 views
Ruby and duck typing: design by contract impossible?
Method signature in Java:
public List<String> getFilesIn(List<File> directories)
similar one in ruby
def get_files_in(directories)
In the case of Java, the type system gives me …
10
votes
4answers
306 views
How to make a Java class that implements one interface with two generic types?
I have a generic interface
public interface Consumer<E> {
public void consume(E e);
}
I have a class that consumes two types of objects, so I would like to do something like:
public …
10
votes
15answers
905 views
Programming against interfaces: Do you write interfaces for all your domain classes?
Hi,
I agree, that programming against interfaces is a good practice. In most cases in Java "interface" in this sense means the language construct interface, so that you write an interface and an …
10
votes
11answers
2k views
Why no static methods in Interfaces, but static fields and inner classes OK?
There have been a few questions asked here about why you can't define static methods within interfaces, but none of them address a basic inconsistency: why can you define static fields and static …
10
votes
10answers
384 views
.NET - Can you over interface, and when shouldn’t you interface.
Is it possible to over interface? when designing an system now, I will start from interfaces and progressively write unit tests along with the interfaces until I have a pattern that works well.. I'll …
10
votes
16answers
790 views
Is there any point for interfaces in dynamic languages?
In static languages like Java you need interfaces because
otherwise the type system just won't let you do certain things.
But in dynamic languages like PHP and Python you just take
advantage of …
