This is a great book but (as he does hint at in his introduction) how useful is it for those of us who are not designing APIs for the rest of the world.

Does API designing require a slightly different paradigm from code that will never be released as an API and can easily be modified and refactored. Can we use a more agile approach in those cases - can we quite legitimately spend less time getting it perfect - when we know it can be changed later?

There is clearly a line to be drawn somewhere.

link|improve this question

feedback

7 Answers

up vote 18 down vote accepted

Bloch himself says:

All programmers are API designers. Good programs are modular, and intermodular boundaries define APIs. Good modules get reused.

link|improve this answer
1  
Although I think it is fair to say that he has an extreme view on this issue. – Tom Hawtin - tackline Jan 18 '10 at 17:02
It might be extreme; although it has a lot of merit. – gpampara Jan 18 '10 at 17:30
4  
This is irrelevant, though, since the vast majority of advice in the book is not specific to APIs anyway. – Kevin Bourrillion Jan 19 '10 at 21:12
feedback

This book is incredibly useful for anyone who touches code, Java or not.

I credit this book as being the best book relating to Java programming I've read, and the one that has had the most impact on me as a programmer.

link|improve this answer
No doubt about that - it is a wonderful book. But is that level of thought really only relevant to code that can never be changed once it has been released? – Dan Jan 18 '10 at 14:41
I think what you are asking is akin to "Should we still carefully design internal code that can easily be updated?" In my opinion the answer to this is "of course" - I think you should always be designing things the best you can. Even if you don't have external users of your APIs, you likely have other internal components interfacing with your application. I also find that coding as if I was writing an API helps keep in mind cleanness, how easy the code is to grok, etc – matt b Jan 18 '10 at 14:44
1  
@Dan I haven't yet come across code that never changes. At least in a business environment you always assume that the code will change and evolve in the future. – Vincent Ramdhanie Jan 18 '10 at 15:31
feedback

It is a very insightful book, even if you are not an API designer. You will in any case have to write some API's, even if it is for your personal use only. Many of the advices in the book cover much more that simply api design, such as best practices for exceptions management, you will have to exercise anyway. Definitively a must read book for anyone who has to use java.

link|improve this answer
feedback

I found it very helpful to few all public classes and methods as API. Even if there is only a single user of that API and both can be changed at the same time.

Treating all your interfaces as API means you document what they do, which in turn means you know which part to fix, when there's a problem.

Of course all that goes only that far and every now and then relaxing the rules a bit can help you get to your goal faster. But you need to remember that you're incurring technical debt, if you do so.

link|improve this answer
feedback

"Effective Java" is clearly for everyone who wants to write Java code. It can be intimidating at first, because you become aware of how bad your code has been, but I think it's really worth it and I feel that it made me a better Java programmer.

It's also the only book about Java I have ever recommended to anyone.

link|improve this answer
I would add Concurrency in Practice by Goetz to your list of recommendations :-) – Dan Jan 19 '10 at 16:41
feedback

Can we use a more agile approach in those cases - can we quite legitimately spend less time getting it perfect - when we know it can be changed later?

Sean McGrath once observed that software is not like water, it is more like concrete. Because the time in which we have complete freedom to mould our code into any shape we like is quite brief. Once other programs call ours, it is set and jolly difficult to change...

... unless we have paid attention to its APIs. The public facing aspects of our code are the bits which are hardest to alter, because those are the parts where change will cause other programs to break. The way to minimize future grief is to regard all code as a potential API.

You mention Agile. The fact is, using Agile techniques, especially Test First and refactoring, will tend to evolve suites of programs with well-defined APIs.

link|improve this answer
feedback

I think the book would be useful for anyone who wants to write better Java code (or say better code). Some of the techniques help one to write better (read bug free) code which I think is valid immaterial of fact whether one is designing API or not. I've just listed couple of items from which I have benefitted:

  • Enforce singleton property with a private constructor or enum:explains a correct way to create a singleton in a multithread environment
  • Couple of items about why is it a good practice to always override hashCode when one overrides equals and an item about immutable classes (without this knowledge one have to wonder why their HashMap/Set implementation doesn't work as expected or has a very poor performance)
  • Prefer class hierarchies to tagged classes (warns against getting carried out by the enum feature and abusing it)

    Similarly I think the techniques explained in other items would be of help when writing Java code.

  • link|improve this answer
    feedback

    Your Answer

     
    or
    required, but never shown

    Not the answer you're looking for? Browse other questions tagged or ask your own question.