Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to have a look at how Java implements LinkedList. Where should I go to look at the source code?

share|improve this question

10 Answers

Install the Java SE Development Kit from http://java.sun.com/javase/downloads/index.jsp.

Once installed, you should find an archive called src.zip in the top of the JDK installation directory. The Java source code is in there.

The file is java/util/LinkedList.java.

share|improve this answer
up vote 4 down vote accepted

I got it finally. Here is the direct link: http://www.java.net/download/jdk6/6u3/promoted/b05/jdk-6u3-fcs-src-b05-jrl-24_sep_2007.jar

share|improve this answer

You have the source in the docjar:

LinkedList.java (from the openjdk-7)

share|improve this answer
This is what you want:

http://www.mavenjava.com/

or

http://javasourcecode.org

share|improve this answer

The sources are hosted in http://hg.openjdk.java.net. Here is the source for java.util.LinkedList.

The site is confusing for newbies there. You can follow the instructions here to explore the source. Even me know the procedures via that information.

share|improve this answer

I would say start at the OpenJDK repository, but I don't see anything there for the LinkedList objects.

share|improve this answer

If you have a JDK, you can find the source in the src.zip file.

If you have an IDE, you can just <ctrl>+<click> or similar on the class/method you want to see the definition of.

share|improve this answer

As previously said, you have a src.zip file installed with Sun JDK if you have selected it during installation. Moreover, if you use eclipse and add a JDK to your JRE list, it will attach automatically the sources to the jar and if you try to open a class with Ctrl+Shift+T (Open Type), you type LinkedList, and it will show you the code of the class.

share|improve this answer

The JDK source code can be browsed online:
https://jdk-jrl-sources.dev.java.net

First you will need to register for a http://java.net account and apply for a Researcher project role on the JDK project:
https://jdk.dev.java.net/#started

You will receive an email when the role has been granted. Looking up the source code in Eclipse is certainly easier, but the online source repository can be useful when you don't already have the source code downloaded.

Also, it seems that some code (such as the native C code used to implement the AWT library) is available only in this repository and not included in the source code JAR file bundled with the JDK.

share|improve this answer
Link down...... – Pacerier Jul 15 '12 at 20:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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