Program to apply foreach() method on Java List in Scala
constant-timeThe method foreach() can be applied on Java list in Scala by utilizing Scala's JavaConversions object. Moreover, here you need to use JavaConversions object as foreach method is not there in Java language. Now, lets see some examples and then discuss how it works in details. Example:1#