Showing posts with label Java. Show all posts
Showing posts with label Java. Show all posts

Wednesday, July 11, 2007

a List vs. IList

One of the advantages of being a programming language polyglot is that you get to see the difference of how people work in all those languages. Of course it might take a while before you're comfortable enough with a language to be able to appreciate it, yet step back far enough to see the patterns of people (including yourself) using that language. But once you do, it takes your understanding of programming languages to a whole new level.

That's all very nice and abstract, but I recently encountered a very practical example of the difference between the C# collection classes and the Java collection classes. While reviewing some of the code of a new prodct, I noticed that a lot of methods in the API were accepting and returning List objects.

  • List filterInstructions(List instructions);

Now without reading further tell me, which language is this: C# or Java. Don't worry, I'll wait while you think about it...





Ok, that wasn't very nice of me. You can't really tell which language it is, since the syntax is valid in both.

But there is a huge difference in what it actually means in both languages. In C# List is a concrete implementation of the IList interface. In Java List is an interface, which is implemented by classes like LinkedList and ArrayList. Do you notice the subtle difference? In C# List is a concrete implementation, in Java it is an interface. So the above code sample in C# would accept only instances of the List class (or a subclass), while the Java implementation would accept any implementation of its List interface.

Now I don't want to start a debate on whether classes should accept or return interfaces or concrete classes. There are plenty of good discussions out there. What I want to do is show what might cause the difference in what I often see in Java code and what I see in C# code.

The example above was from a C# class in one of our products. So the developer chose to expose a concrete List implementation, instead of the IList interface. I noticed this and -coming from a Java background- wondered whether our Java developers would normally expose e.g. an ArrayList in Java. They wouldn't. They would expose the List interface instead. So I asked the C# developer why he chose to expose the concrete class, rather than the interface. He didn't have a specific reason, he just did what was easiest: expose the List class.

Keep in mind that a good developer is a lazy developer. So actually this developer was taking the right approach (be lazy) yet he got a different result than what I'm used to seeing in Java code. But then why wouldn't a Java developer expose his ArrayList, but instead choose to expose the List interface?

Well... I know one possible reason. Both of them are exposing the same thing: a list. And actually they are both saying exactly that in their contract: we're accepting and returning a list. It's just that when you literally say that in C# ("I am exposing a List") it translates into a concrete class, while if you say the same thing in Java ("I am exposing a List") it translates into an interface.

It's really all a matter of understanding how a developer thinks and how your choices in class library design influence that thinking. In this case it is very simple: Microsoft seems to put the List class first in your mind, while Sun/Netscape puts the List interface first. A small detail to many, but I found it an interesting difference between the platforms. What a difference an I makes. :-)

Saturday, May 12, 2007

No JavaOne

If you're a professional Java developer, you really can't have missed it: past week was the week of the annual JavaOne conference. And somehow I managed not to attend it once again. As a Java enthousiast since 1994 (the beta) and a Java professional since 1999, I often wonder why I never attended a single JavaOne conference.

It probably has to do with two things. First I'm not a big conference-go'er to begin with. I know conferences are a great way to get a glimpse at all kinds of technology and -more importantly- are about the best way to improve your network, but somehow I prefer learning a new technology by working with it. And networking... well, that's not really my thing.

The second reason I never attended JavaOne must be the distance. Coming from Europe, it's really quite a journey to attend a conference on the other side of the pond. It's not just the journey itself, but it's also all the arrangements you have to make. Including getting my employer to pay for the trip, because -let's face it- these things aren't cheap.

So once again I didn't get to see the keynote and the introduction of new cool Java-based technology. And once again I didn't get to see the winner in the T-shirt hurling contest. But then again, neither did anyone else because the T-shirt hurling was canceled this year.