• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
Noulakaz

Noulakaz

The blog of Avinash, Christina, Anya and Kyan Meetoo.

  • Home
  • About
  • People
    • Christina & Avinash Meetoo
    • Avinash Meetoo
    • Christina Meetoo
    • Anya Meetoo
    • Kyan Meetoo
  • General
    • News
    • Mauritius
    • Politics
    • Education
    • Business
    • Travel
  • Computing
    • Apple
    • Linux
    • LUGM
    • Programming
    • Web
    • Technology
    • Knowledge Seven
  • Entertainment
    • Music
    • Movies
    • Photography
    • Sports

Beware of type erasure in Java

14 October 2007 By Avinash Meetoo 13 Comments

This Java program I got from a blog does not compile:

import java.util.*;

class Egg
{
}

class Muffin
{
}

public class Breakfast
{
  private List<Egg> eggs;
  private List<Muffin> muffins;

  public void add(List<Egg> moreEggs) {
    this.eggs.addAll(moreEggs);
  }

  public void add(List<Muffin> moreMuffins) {
    this.muffins.addAll(moreMuffins);
  }
}

The error message is:

name clash: add(java.util.List<Muffin>) and add(java.util.List<Egg>) have the same erasure

I was amazed when I saw that. I finally found an explanation in this forum.

What is happening is that (I quote) “Parameterized types (aka Generics) are only to restrict the use to enter the right object into the collection. All the generic information is erased by the compiler.”

So that why I got a name clash error. Both add(java.util.List<Muffin>) and add(java.util.List<Egg>) are in fact the same method add(java.util.List)!!!

Generics in Java are only used at compile time. They don’t even exist at run time!

PS:

I am a fan of Erasure, the group. Vince Clark was the initiator of Depeche Mode after all…

Filed Under: Education, Programming, Technology

Reader Interactions

Comments

  1. Madhav says

    15 October 2007 at 00:11

    Nice! Never came across that one! Well its also quite understandable as generics are usually used to help the programmer’s not make errors by adding wrong objects to lists and thus is not needed at runtime.

  2. Eddy Young says

    15 October 2007 at 03:37

    The rude comment would be, people should pay more attention to the Java Specs before complaining. They should not start screaming just because they’ve been caught with their pants down after mis-understanding how an aspect of the language works.

    Java Generics was always intended for type-safety at compile-time and not for type information to be retained at run-time. So, when a program executes, a List remains a list, however it is parameterised.

    Type erasure exists because the JCP wanted to maintain backward compatibility. Allowing for List and List to be completely different types would have broken many programs. Your normal List (parameterised with Object) would no longer mean the same thing as List, and vice-versa. Even C# side-steps the problem by offering entirely different classes for generics collections. I am not aware if there are plans for this in Java in the future — too much C# coding lately and not enough time to keep up with what is happening on the Java front :-)

    That said, knowing the specifications of Generics, programmers should be able to design their program around those.

  3. Harish says

    15 October 2007 at 11:36

    I have this site to be quite useful, although it does go into a lot of detail about Java generics:

    http://angelikalanger.com/GenericsFAQ/JavaGenericsFAQ.html

    Harish

  4. Eddy Young says

    15 October 2007 at 13:49

    All the < and > in my comment have been interpreted as HTML, so that part of it does not make any sense.

    What I meant above is, had Java Generics been implemented for parameterised types to be completely different, backward compatibility would have been broken. In existing programs, a method expecting a “list of objects” as argument will no longer work with a “list of eggs”.

    — Eddy

  5. avinash says

    15 October 2007 at 18:16

    Yes,

    As Madhav and Eddy pointed out, this behavior is perfectly understandable but, still, I was amazed because of my dynamic language background.

    It feels so, ahem, bizarre that List<Egg> is not a type…

  6. Eddy Young says

    15 October 2007 at 19:34

    Well, let’s take a packaging example. You can have an “egg packaging” or you could have a “package holding eggs”. In the first case, the packaging would be egg-shaped to hold just eggs, whereas in the second case you’re merely saying, “careful there are eggs in this box”.

    Generics does the second. Strong-typing does the first.

  7. selven says

    15 October 2007 at 20:04

    hmmm that’s not a big deal. Seeing the title i thought java had some major disadvantage and ppl have started accepting to throw that away.

    +$3|

  8. avinash says

    16 October 2007 at 15:57

    Yep.

    Generics in Java is a compiler feature which prevents people from adding eggs in lists of muffins.

    It also allows people to remove muffins from lists of muffins without going through the Object hassle (automatic boxing and unboxing).

    This is good enough I guess… for a static programming language.

    No need to throw Java away yet, Selven :-)

  9. javed mandary says

    16 October 2007 at 20:33

    Hi,
    thats so really cool.

    By the way before your addAll your eggs and muffins don’t forget to initialize those lists .. dont want to get a NullPointerException do you?

  10. avinash says

    16 October 2007 at 22:22

    Oops!

  11. avinash says

    16 October 2007 at 22:23

    Or, now that I think of it, this does not really matter Javed as the program does not even compile :-)

  12. Eddy Young says

    16 October 2007 at 23:53

    @javed: Noticed that, too, but discarded it as a typo (like the capitalisation — or lack of — of the type parameter.

  13. nasrullah says

    23 October 2007 at 17:42

    Being an Ubuntu user I am very happy to visit your nice blog.
    Merc,i Avinash

Leave a Reply

Your email address will not be published. Required fields are marked *

Primary Sidebar

Our Personal Websites

Avinash Meetoo
Christina Meetoo
Anya Meetoo
Kyan Meetoo

Related Posts

  • Hibernate: a powerful enterprise Java technology
  • Hello Java 8
  • Java training course starting next Monday 20 April
  • The significance of JRuby and GlassFish

Random Posts

  • Political illiterates in Quatre-Bornes
  • Akiyoshi’s illusion pages
  • Two gems from Queue
  • 1984 once more: the iPhone is revolutionary

Archives

  • June 2025 (1)
  • May 2025 (3)
  • April 2025 (4)
  • January 2025 (3)
  • December 2024 (2)
  • November 2024 (2)
  • October 2024 (3)
  • September 2024 (7)
  • August 2024 (1)
  • July 2024 (1)
  • June 2024 (2)
  • May 2024 (3)
  • January 2024 (2)
  • December 2023 (1)
  • October 2023 (1)
  • September 2023 (4)
  • August 2023 (3)
  • July 2023 (1)
  • June 2023 (4)
  • May 2023 (1)
  • April 2023 (1)
  • March 2023 (5)
  • February 2023 (1)
  • December 2022 (1)
  • November 2022 (1)
  • October 2022 (4)
  • August 2022 (4)
  • July 2022 (3)
  • June 2022 (5)
  • May 2022 (5)
  • January 2022 (3)
  • December 2021 (2)
  • November 2021 (1)
  • October 2021 (1)
  • September 2021 (4)
  • August 2021 (2)
  • July 2021 (14)
  • May 2021 (2)
  • April 2021 (4)
  • March 2021 (9)
  • February 2021 (2)
  • January 2021 (1)
  • October 2020 (1)
  • September 2020 (1)
  • August 2020 (2)
  • July 2020 (5)
  • June 2020 (3)
  • May 2020 (5)
  • April 2020 (6)
  • March 2020 (2)
  • February 2020 (2)
  • January 2020 (2)
  • October 2019 (1)
  • September 2019 (2)
  • July 2019 (2)
  • June 2019 (1)
  • May 2019 (3)
  • April 2019 (2)
  • March 2019 (1)
  • February 2019 (1)
  • January 2019 (3)
  • December 2018 (1)
  • October 2018 (3)
  • August 2018 (2)
  • July 2018 (2)
  • June 2018 (1)
  • May 2018 (2)
  • April 2018 (1)
  • February 2018 (1)
  • December 2017 (1)
  • October 2017 (1)
  • September 2017 (1)
  • August 2017 (1)
  • July 2017 (1)
  • May 2017 (4)
  • April 2017 (3)
  • March 2017 (4)
  • February 2017 (5)
  • January 2017 (3)
  • October 2016 (1)
  • September 2016 (1)
  • August 2016 (4)
  • July 2016 (1)
  • June 2016 (1)
  • March 2016 (3)
  • February 2016 (3)
  • January 2016 (1)
  • December 2015 (1)
  • November 2015 (2)
  • September 2015 (1)
  • August 2015 (3)
  • March 2015 (1)
  • December 2014 (1)
  • November 2014 (4)
  • October 2014 (1)
  • March 2014 (2)
  • February 2014 (3)
  • December 2013 (1)
  • October 2013 (1)
  • September 2013 (1)
  • August 2013 (1)
  • July 2013 (1)
  • June 2013 (2)
  • May 2013 (1)
  • March 2013 (3)
  • January 2013 (2)
  • December 2012 (3)
  • November 2012 (4)
  • September 2012 (3)
  • August 2012 (2)
  • July 2012 (3)
  • June 2012 (2)
  • May 2012 (1)
  • April 2012 (2)
  • February 2012 (1)
  • January 2012 (4)
  • December 2011 (2)
  • November 2011 (1)
  • October 2011 (4)
  • September 2011 (2)
  • August 2011 (1)
  • July 2011 (2)
  • June 2011 (4)
  • April 2011 (7)
  • March 2011 (2)
  • February 2011 (1)
  • January 2011 (3)
  • November 2010 (3)
  • October 2010 (1)
  • September 2010 (2)
  • August 2010 (4)
  • July 2010 (2)
  • June 2010 (1)
  • May 2010 (3)
  • April 2010 (4)
  • March 2010 (3)
  • February 2010 (3)
  • January 2010 (5)
  • December 2009 (2)
  • November 2009 (3)
  • October 2009 (1)
  • September 2009 (5)
  • August 2009 (3)
  • July 2009 (1)
  • June 2009 (3)
  • May 2009 (2)
  • April 2009 (7)
  • March 2009 (12)
  • February 2009 (10)
  • January 2009 (5)
  • December 2008 (4)
  • November 2008 (11)
  • October 2008 (6)
  • September 2008 (7)
  • August 2008 (3)
  • July 2008 (8)
  • June 2008 (6)
  • May 2008 (5)
  • April 2008 (7)
  • March 2008 (6)
  • February 2008 (3)
  • January 2008 (6)
  • December 2007 (11)
  • November 2007 (10)
  • October 2007 (7)
  • September 2007 (9)
  • August 2007 (3)
  • July 2007 (7)
  • June 2007 (8)
  • May 2007 (14)
  • April 2007 (11)
  • March 2007 (18)
  • February 2007 (14)
  • January 2007 (15)
  • December 2006 (16)
  • November 2006 (10)
  • October 2006 (7)
  • September 2006 (8)
  • August 2006 (8)
  • July 2006 (6)
  • June 2006 (4)
  • May 2006 (13)
  • April 2006 (10)
  • March 2006 (11)
  • February 2006 (7)
  • January 2006 (14)
  • December 2005 (8)
  • November 2005 (6)
  • October 2005 (7)
  • September 2005 (2)
  • August 2005 (6)
  • July 2005 (2)
  • June 2005 (6)
  • May 2005 (15)
  • April 2005 (12)
  • March 2005 (3)
  • February 2005 (8)
  • January 2005 (3)
  • December 2004 (1)
  • November 2004 (2)
  • October 2004 (2)
  • September 2004 (3)
  • August 2004 (3)
  • July 2004 (3)
  • June 2004 (3)
  • May 2004 (6)
  • April 2004 (10)
  • March 2004 (12)
Creative Commons License This work is licensed by Avinash Meetoo under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 Unported License.