Here, we will create an object of Vector collection. Then we will print the elements of the vector with or without using the foreach loop on the console screen.
The Vector is an immutable data structure. We can access vector elements randomly. It extends an abstract class AbstractSeq and IndexedSeq trait. We use the Vector collection to store a large number of elements.
Program/Source Code:
The source code to print the vector elements using the foreach loop is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.
Output:
Explanation:
Here, we used an object-oriented approach to create the program. And, we imported Collection classes using the below statement,
And, we also created a singleton object Sample and defined the main() function. The main() function is the entry point for the program.
In the main() function, we created a vector vector using Vector collection. Then we printed the elements of vector with or without using the foreach loop.
need an explanation for this answer? contact us directly to get an explanation for this answer