Tagged Questions

An interface refers to the point of interaction between components. Interfaces are applicable at both the hardware and software level. In general, an interface exposes a contract without exposing the underlying implementation details. In Object Oriented Programming, interfaces define abstract types that expose behavior, but contain no logic. Implementation is defined by the class or type that implements the interface.

learn more… | top users | synonyms (1)

272
votes
57answers
22k views

Is it just me or are interfaces overused? [closed]

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 ...
110
votes
9answers
76k 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?
106
votes
10answers
20k 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 ...
96
votes
21answers
4k 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: ...
79
votes
8answers
26k views

Interface defining a constructor signature?

It's weird that this is the first time I've bumped into this problem, but: How do you define a constructor in a C# interface? Edit Some people wanted an example (it's a free time project, so yes, ...
56
votes
9answers
15k 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 ...
55
votes
14answers
10k views

Interface vs Abstract Class (general OO)

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 it ...
46
votes
26answers
2k views

Explaining Interfaces to Students

For a few years I was a teaching assistant for an introduction to programming module - Java for first year undergraduates. Mostly it went well and we managed to get object-oriented programming across ...
46
votes
18answers
6k views

What does it mean to “program to an interface”?

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 think I am ...
40
votes
4answers
24k views

Difference between abstract class and interface in Python

What is the difference between abstract class and interface in Python?
37
votes
5answers
26k views

Is there any ready-made calendar control for iPhone apps?

I am building an applicaiton for the iPhone that will display upcoming and past events. I settled for a list view, but then I realized that a calendar (just like the one displayed in the "month" view ...
35
votes
4answers
665 views

Final arguments in interface methods - what's the point?

In Java, it is perfectly legal to define final arguments in interface methods and do not obey that in the implementing class, e.g.: public interface Foo { public void foo(int bar, final int baz); ...
34
votes
8answers
15k views

Why would a static inner interface be used in Java?

I have just found a static inner interface in our code-base. class Foo { public static interface Bar { /* snip */ } /* snip */ } I have never seen this before. The original ...
33
votes
10answers
2k 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 ...
32
votes
18answers
2k 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 ...
30
votes
8answers
26k views

Find Java classes implementing an interface

Some time ago, I came across a piece of code, that used some piece of standard Java functionality to locate the classes that implemented a given interface. I know the functions were hidden in some ...
29
votes
22answers
2k views

Interfaces: Why can't 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 haven't ever really been exposed to good explanations of ...
28
votes
16answers
16k views

Why can't I define a static method in a Java interface?

Here's the example: public interface IXMLizable<T> { static T newInstanceFromXML(Element e); Element toXMLElement(); } Of course this won't work. But why not? One of the possible issues ...
27
votes
4answers
7k views

What is the difference between an interface and abstract class?

What exactly is the difference between an interface and abstract class?
26
votes
11answers
21k 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 ...
26
votes
11answers
25k views

What is the single best javascript lightbox script currently available?

What is the best javascript lightbox script currently available? I'm working on a project and am a bit baffled at the number of lightbox scripts out there. The one I need should: not allow flash ...
25
votes
11answers
2k views

Why do we use Interface? Is it only for Standardization?

Why do we use Interface? Is it only for Standardization?
25
votes
23answers
3k 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 ...
25
votes
9answers
5k views

Why can't I declare static methods in an interface?

The topic says the most of it - what is the reason for the fact that static methods can't be declared in an interface? public interface ITest { public static String test(); } The code above ...
24
votes
5answers
8k views

Custom fonts and XML layouts (Android)

I'm trying to define a GUI layout using XML files in Android. As far as I can find out, there is no way to specify that your widgets should use a custom font (e.g. one you've placed in assets/font/) ...
23
votes
4answers
2k 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 ...
23
votes
14answers
10k 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 ...
22
votes
7answers
10k views

Java Pass Method as Parameter

I am looking for a way to pass a parameter by reference. I understand that Java does not pass methods as parameters, however, I would like to get an alternative. I've been told interfaces are the ...
22
votes
4answers
988 views

Compelling Reasons to Use Marker Interfaces Instead of Attributes

It's been discussed before on Stack Overflow that we should prefer attributes to marker interfaces (interfaces without any members). Interface Design article on MSDN asserts this recommendation too: ...
22
votes
7answers
5k views

How can I use interface as a C# generic type constraint?

Is there a way to get the following function declaration? public bool Foo<T>() where T : interface; ie. where T is an interface type (similar to where T : class, and struct). Currently I've ...
22
votes
7answers
14k views

How do you find all subclasses of a given class in Java?

How does one go about and try to find all subclasses of a given class (or all implementors of a given interface) in Java? As of now, I have a method to do this, but I find it quite inefficient (to say ...
22
votes
7answers
7k views

Methods in a Java interface with or without public access modifier

Should methods in a Java interface be declared with or without a public access modifier? Technically it doesn't matter of course. A class method that implements an interface is always public. But ...
20
votes
2answers
695 views

Pros and Cons of Interface constants

PHP interfaces allow the definition of constants in an interface, e.g. interface FooBar { const FOO = 1; const BAR = 2; } echo FooBar::FOO; // 1 Any implementing class will automatically ...
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 ...
20
votes
4answers
7k 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?
20
votes
16answers
2k views

Why do most 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 ...
19
votes
9answers
876 views

How can you explain the difference between an interface and an abstract class to a non-programmer? [closed]

Possible Duplicate: When to use an interface instead of an abstract class and vice versa? Hi, I am teaching OOP concepts to non-programmers. I wanted to know how can you explain the ...
19
votes
5answers
1k views

What does “program to interfaces, not implementations” mean?

One stumbles upon this phrase when reading about design patterns. But I don't understand it, could someone explain this for me?
19
votes
6answers
2k 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, ...
18
votes
4answers
2k views

Interface or an Abstract Class: which one to use?

Please explain when I should use an interface and when I should use abstract class? How I can change my abstract class in to an interface?
18
votes
25answers
2k views

Useless interfaces

Why would you ever use interface it you are going to have only one implementation of it?
18
votes
14answers
2k 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 ...
18
votes
15answers
3k views

Programming against interfaces: Do you write interfaces for all your domain classes?

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 ...
18
votes
13answers
6k 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 ...
17
votes
6answers
756 views

How to force a generic type parameter to be an interface?

Is there a way in java to specify, that the type parameter of a generic class must be an interface (not just extending it!) What I want to do is the following: public class MyClass<X extends ...
17
votes
9answers
1k views

What are the pros and cons of using interfaces in Delphi?

I have used Delphi classes for a while now but never really got into using interfaces. I already have read a bit about them but want to learn more. I would like to hear which pros and cons you have ...
17
votes
3answers
4k views

Java Reflection: Create an implementing class

Class someInterface = Class.fromName("some.package.SomeInterface"); How do I now create a new class that implements someInterface? I need to create a new class, and pass it to a function that needs ...
16
votes
3answers
229 views

Prefixing interfaces with I?

I am currently reading "Clean Code" By Rober Martin (UncleBob), and generally loving the musings of UncleBob. However, I got a bit confused, when I read that he avoids prefixing interfaces like ...
16
votes
6answers
2k views

Type List vs type ArrayList in Java

(1) List<?> myList = new ArrayList<?>(); (2) ArrayList<?> myList = new ArrayList<?>(); I understand that with (1), implementations of the List interface can be swapped. It ...
16
votes
7answers
2k views

Comment the interface, implementation or both?

I imagine that we all (when we can be bothered!) comment our interfaces. e.g. /// <summary> /// Foo Interface /// </summary> public interface Foo { /// <summary> /// Will ...

1 2 3 4 5 76