Tagged Questions

76
votes
52answers
8k views

Is it just me or are interfaces overused?

Ok, I may resort to a tad ranting here, so let me apologize in advance, but I'm really curious if others find this pattern annoying too (and I wonder if it is a justifiable pattern)… So, after just …
23
votes
19answers
1k views

Why would I want to use Interfaces?

I understand that they force you to implement methods and such but what I cant understand is why you would want to use them. Can anybody give me a good example or explanation on why I would want to …
17
votes
22answers
2k views

Why are interfaces preferred to abstract classes?

I recently attended an interview and they asked me the question "Why Interfaces are preferred over Abstract classes?" I tried giving a few answers like: We can get only one Extends functionality …
15
votes
9answers
1k views

How is duck typing different from the old ‘variant’ type and/or interfaces?

I keep seeing the phrase "duck typing" bandied about, and even ran across a code example or two. I am way too lazy busy to do my own research, can someone tell me, briefly: the difference between a …
13
votes
24answers
1k views

Useless interfaces

Why would you ever use interface it you are going to have only one implementation of it?
13
votes
8answers
1k views

Interface vs Abstract Class (general OO)

Hi, I have had recently two telephone interviews where I've been asked about the differences between an Interface and an Abstract class. I have explained every aspect of them I could think of, but …
13
votes
9answers
3k views

Multiple Inheritance in C#

Since multiple inheritance is bad (it makes the source more complicated) C# does not provide such a pattern directly. But sometimes it would be helpful to have this ability. For instance I'm able to …
12
votes
7answers
629 views

How can I write a generic container class that implements a given interface in C#?

Context: .NET 3.5, VS2008. I'm not sure about the title of this question, so feel free to comment about the title, too :-) Here's the scenario: I have several classes, say Foo and Bar, all of them …
12
votes
17answers
821 views

What is the purpose of interfaces? [closed]

I want to understand the purpose of interfaces. I know how to declare an interface and how to implement the interface, but what is the need of it? I need to understand the reason for using interfaces. …
12
votes
7answers
2k views

Should a method that implements an interface method be annotated with @Override

Intro My real question is about the use of the annotation. Trying to find an answer myself, I ran into several other questions. This is why there are also related questions below. I hope this is not …
10
votes
3answers
279 views

Is it possible to make a parameter implement two interfaces?

Is it possible to define a function that takes in a parameter that must implement two interfaces? (The two interfaces are ones I just remembered off the top of my head; not the ones I want to use) …
10
votes
9answers
5k views

How do you declare an interface in c++

How do i setup a class that represents an interface? Is this just an abstract base class?
9
votes
5answers
400 views

C# and Interfaces - Explicit vs. Implicit

In C#, if a class has all the correct methods/signatures for an Interface, but doesn't explicitly implement it like: class foo : IDoo {} Can the class still be cast as that interface?
9
votes
11answers
565 views

Why cast to an interface?

In Jesse Liberty's Programming C# (p.142) he provides an example where he casts an object to an interface. interface IStorable { ... } public class Document : IStorable { ... } ... …
9
votes
13answers
1k views

When to use an interface instead of an abstract class and vice versa?

This may be a generic OOP question. I wanted to do generic comparison between an interface and an abstract class on the basis of their usage. When would one want to use and interface and when would on …

1 2 3 4 5 39 next
15 30 50 per page