vote up 1 vote down star

Sorry for the rant but I've been encountering this lots over the last couple of weeks, but with internally developed software and third party software. And that is, that so few developers seem to understand that a list with 1, or even 0, entries, is still a list.

Rather what I'm encountering is that when there is just one value, I'm being provided with that value, whereas when there is more than one value, I am being provided with a list. Needless to say this leads to me having to handle a single value as a special case.

Again apologies for the rant. But there is a real question in here. Why do so few developers understand that a list of 1 is still a list? What is the mental block? Or is it just inexperience?

flag
11  
It hasn't been my experience that many developers, regardless of how junior, struggle with this concept. – Rex M Nov 3 at 16:59
Really, I never met anyone, programmer or non-programmer, that couldn't grasp the idea of an empty list, or a singleton list... – Martinho Fernandes Nov 3 at 17:03
Could you clarify "provided" in "I'm being provided with that value." If a function/query/whatever always returns a single value, then a scalar return type would be most appropriate. If it can return zero, one or more values, clearly a list/collection return type is in order. What specific experiences are you having? – Bob Kaufman Nov 3 at 17:04
Even my five-year-old cousin understands what it means to have an empty pile, or a pile of a single block... – Martinho Fernandes Nov 3 at 17:05
Why is it that so many people see two or three examples of some phenomenon X in a short period and immediately jump to the conclusion that X happens ALMOST ALL of the time? – Stephen C Nov 21 at 0:38
show 1 more comment

closed as not a real question by LFSR Consulting, Rex M, toolkit, Martinho Fernandes, OMG Ponies Nov 3 at 17:02

1 Answer

vote up 3 vote down

It is inexperience. In some languages this is common and very clear. For instance in Python you have the following:

n = 1     # one thing
n = [1,]  # a list with one thing
n = []    # an empty list
n = None  # nothing at all, not even a list

Simples!

This is one of the reasons why it is good to hire C or C++ or C# or Java programmers who have some experience with LISP or Scheme or Erlang or Haskell or Python.

link|flag
How about Prolog? ;) – Scoregraphic Nov 5 at 6:51

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