Logo 
Search:

Java Answers

Ask Question   UnAnswered
Home » Forum » Java       RSS Feeds
  Question Asked By: Hisham Younis   on Jul 01 In Java Category.

  
Question Answered By: Tyrone Sanchez   on Jul 01

To sort  an array, look into the Comparator interface.

Second question, put a label on the for loop that you
want to continue and name the label in your continue.

Example :

outer :
for
{
for
{
if
{
for
{
if ( true  )
continue outer;
...

Share: