| Home | JSP | EJB | JDBC | Java Servlets | WAP | Free JSP Hosting | Spring Framework | Web Services | BioInformatics | Java Server Faces | Jboss 3.0 tutorial | Hibernate 3.0 | XML | ||||
|
||||
|
|
||||
| Tutorial Categories: Ajax
| Articles
| JSP
| Bioinformatics
| Database
| Free
Books |
Hibernate
| J2EE
| J2ME
| Java
| JavaScript
| JDBC
| JMS
| Linux
| MS
Technology |
PHP
| RMI
| Web-Services
| Servlets
| Struts
| UML
|
|
||||||||||||||||||||||||||||||
|
Home | JSP | EJB | JDBC | Java Servlets | WAP | Free JSP Hosting | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs |
||||||||||||||||||||||||||||||
Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.
Copyright © 2007. All rights reserved.
Current Comments
1 comments so far (post your own) View All Comments Latest 10 Comments:import java.util.*;
import java.io.*;
public class ShufflingListAndArray{
public static void main(String[] args) throws IOException{
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
System.out.print("How many elements you want to add to the list: ");
int n = Integer.parseInt(in.readLine());
System.out.print("Enter " + n + " numbers to sort: ");
List<Integer> list = new ArrayList<Integer>();
for(int i = 0; i < n; i++){
list.add(Integer.parseInt(in.readLine()));
}
Collections.shuffle(list);
Collections.sort(list);
System.out.println("List sorting :"+ list);
}
}
Hi,
line-> list.add(Integer.getInteger(in.readLine())); here List object has declare to hold Interger type using java generics. But Interger.parseInt(String) returns java primitive int.so it gives datatype compatibility while compiling. ofcourse this is small logical bugs.
Thanks,
Posted by Prasanta Panda on Wednesday, 12.17.08 @ 01:50am | #82853