Posts from July 2014

2 result(s) found

Java for-each loop
Java

For-each constructOne of the construct introduced since Java 1.5 is for-each loop. "for-each" loop is an enhanced version of a Java other looping constructs "for" and "while".Just consider below examp...

Java keyword & operator instanceof
Java

instanceof"instanceof" is a Java keyword and a binary operator. It works on two operands, object reference on the left and class/interface name on the right. instanceof operator returns true if the ob...