We're a community of 1076K IT Pros here for help, advice, solutions, professional growth and fun. Join us!
1,075,612 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Start New Discussion Reply to this Discussion

Got problem on using linked list

import java.util.*;

public class LinkedListDemo
{
    public static void main(String[] args)
    {
        LinkedList link=new LinkedList();
        link.add("a");
        link.add("b");
        link.add(new Integer(10));
        System.out.println("The contents of array is" + link);
        System.out.println("The size of an linkedlist is" + link.size());

        link.addFirst(new Integer(20));
        System.out.println("The contents of array is" + link);
        System.out.println("The size of an linkedlist is" + link.size());

        link.addLast("c");
        System.out.println("The contents of array is" + link);
        System.out.println("The size of an linkedlist is" + link.size());

        link.add(2,"j");
        System.out.println("The contents of array is" + link);
        System.out.println("The size of an linkedlist is" + link.size());

        link.add(1,"t");
        System.out.println("The contents of array is" + link);
        System.out.println("The size of an linkedlist is" + link.size());

        link.remove(3);
        System.out.println("The contents of array is" + link);
        System.out.println("The size of an linkedlist is" + link.size());
    }
}

this is the error i got..

--------------------Configuration: <Default>--------------------
Note: C:\Users\Fajutag\Documents\Java Saved Files\LinkedListDemo.java uses unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.

Process completed.

can someone tell me what should i do on this..

3
Contributors
4
Replies
3 Hours
Discussion Span
5 Months Ago
Last Updated
6
Views
aabbccbryanmark
Light Poster
39 posts since Jul 2012
Reputation Points: 0
Solved Threads: 0
Skill Endorsements: 0

either ignore it, or don't use unchecked or unsafe operations ....
if you want more information about what the 'problem' (it's more a remark then a problem, but still) is: do as the message suggests and recompile with the
-Xlint:unchecked
argument.

stultuske
Industrious Poster
4,366 posts since Jan 2007
Reputation Points: 1,318
Solved Threads: 610
Skill Endorsements: 23

but how do i compile with that Xlint:unchecked?..

aabbccbryanmark
Light Poster
39 posts since Jul 2012
Reputation Points: 0
Solved Threads: 0
Skill Endorsements: 0

its simple

currently you are compiling this way
javac <className.java>

You can add the option "-Xlint:unchecked" during compilation like below

javac -Xlint:unchecked <className.java>

But it is not necessary. You can ignore the message straight away

subramanya.vl
Junior Poster in Training
81 posts since Oct 2012
Reputation Points: 0
Solved Threads: 10
Skill Endorsements: 0

or you add that argument as compile argument in the ide you use.
but, as mentioned before, it is rather a remark. the application does compile and run.

stultuske
Industrious Poster
4,366 posts since Jan 2007
Reputation Points: 1,318
Solved Threads: 610
Skill Endorsements: 23

This article has been dead for over three months: Start a new discussion instead

Post: Markdown Syntax: Formatting Help
 
You
 
© 2013 DaniWeb® LLC
Page rendered in 0.0692 seconds using 2.69MB