filmov
tv
#33 Enhanced for Loop in Java

Показать описание
Check out our courses:
Coupon: TELUSKO10 (10% Discount)
Coupon: TELUSKO10 (10% Discount)
Coupon: TELUSKO20 (20% Discount)
For More Queries WhatsApp or Call on : +919008963671
In this lecture we are discussing:
1)why do we need enhanced for loop if we have many different loop.
2)enhanced for loop use to iterate values of arrays and collection
#1
why do we need enhanced for loop ?
-- As of Java 5, the enhanced for loop was introduced. This is mainly used to traverse a collection of elements including arrays.
-- for traversing any collection and arrays without index we can use enhanced for loop.
-- syntax does not need increment statement, condition check statement .this can automatically iterate the array or collection without need of index.
#3
-- enhanced for loop can be used in array and collection to iterate the object
syntax
int nums[]=new int[4];
for(int n:nums){
}
for curiosity:
e.g use of enhanced for loop in collection
ArrayList al=new ArrayList();
for(Object o:al){
}
Note: Do not confuse yourself with collection in upcoming lecture we will discussing the collection.
More Learning :
Donation:
PayPal Id : navinreddy20
Coupon: TELUSKO10 (10% Discount)
Coupon: TELUSKO10 (10% Discount)
Coupon: TELUSKO20 (20% Discount)
For More Queries WhatsApp or Call on : +919008963671
In this lecture we are discussing:
1)why do we need enhanced for loop if we have many different loop.
2)enhanced for loop use to iterate values of arrays and collection
#1
why do we need enhanced for loop ?
-- As of Java 5, the enhanced for loop was introduced. This is mainly used to traverse a collection of elements including arrays.
-- for traversing any collection and arrays without index we can use enhanced for loop.
-- syntax does not need increment statement, condition check statement .this can automatically iterate the array or collection without need of index.
#3
-- enhanced for loop can be used in array and collection to iterate the object
syntax
int nums[]=new int[4];
for(int n:nums){
}
for curiosity:
e.g use of enhanced for loop in collection
ArrayList al=new ArrayList();
for(Object o:al){
}
Note: Do not confuse yourself with collection in upcoming lecture we will discussing the collection.
More Learning :
Donation:
PayPal Id : navinreddy20
Комментарии