Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

what is the diffrence between for and foreach?

Answer Posted / nishant lokhande

foreach loop is also called as advance for loop
foreach loop is used to display an elements in collection.
eg.

To print arry element
by using foreach loop


public class Demo
{
public static void main(String args[])
{
String[] data = { "tomato", "potato","onion" };
for (String s : data)
{
System.out.println(s);
}
}
}


By using for loop

public class Demo
{

public static void main(String args[])
{
String[] data = { "tomato", "potato","onion" };
for(Iterator it = data.iterator();it.hasnext();)
{
String data1 = (String)it.next();
System.out.println(data1.charAt(0));
}

}

}

Is This Answer Correct ?    2 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What version of php do I have windows?

929


What is the use of $_server["php_self"] variable?

997


What is form action php?

1016


What is php good for?

916


What is fetch array in php?

1091


How do you call a constructor for a parent class?

898


Is php an api?

972


Which have the fastest execution between mysql_fetch_array() and mysql_fetch_assoc()

2332


How to track no of user logged in?

1013


What is the use of super-global arrays in php?

947


How to retrieve the original query string?

1067


What is empty () in php?

952


Write a program to display reverse of any number?

899


How to genrate report in wordpress cms

2307


What is meant by PEAR in PHP?

967