Find the last element of a list in scala
In Scala, list is defined under scala.collection.immutable
package. A list is a collection of same type elements which contains immutable data. we generally use last function to print last element of a list.
Below are the examples to find the last element of a given list in Scala.
- Simply print last element of a list
// Scala program to find the last element of a given list
import
scala.collection.immutable.
_
// Creating object
object
GFG
{
// Main method
def
main(args
:
Array[String])
{
// Creating and initializing immutable lists
val
mylist
:
List[String]
=
List(
"Geeks"
,
"For"
,
"geeks"
,
"is"
,
"best"
)
// Display the last value of mylist
println(
"Last element is: "
+ mylist.last)
}
}
chevron_rightfilter_noneOutput:
Last element is: best
- Print last element of a list using for loop
// Scala program to find the last element of a given list
// using for loop
import
scala.collection.immutable.
_
// Creating object
object
GFG
{
// Main method
def
main(args
:
Array[String])
{
// Creating and initializing immutable lists
val
mylist
:
List[String]
=
List(
"Geeks"
,
"For"
,
"geeks"
,
"is"
,
"a"
,
"fabulous"
,
"portal"
)
// Display the last value of mylist using for loop
for
(element
<
-mylist.last)
{
print(element)
}
}
}
chevron_rightfilter_noneOutput:
portal
- Print last element of a list using foreach loop
// Scala program to find the last element of a given list
// using foreach loop
import
scala.collection.immutable.
_
// Creating object
object
GFG
{
// Main method
def
main(args
:
Array[String])
{
// Creating and initializing immutable lists
val
mylist
=
List(
1
,
2
,
3
,
4
,
5
,
6
)
print(
"Original list is: "
)
// Display the value of mylist using for loop
mylist.foreach{x
:
Int
=>
print(x +
" "
) }
// calling last function
println(
"\nLast element is: "
+ mylist.last)
}
}
chevron_rightfilter_noneOutput:
Original list is: 1 2 3 4 5 6 Last element is: 6
Recommended Posts:
- How to get the first element of List in Scala
- How to skip only first element of List in Scala
- Scala List max() method with example
- Scala List +() operator with example
- How to reverse a list in scala
- Scala List min() method with example
- How to print a list in Scala
- Scala List contains() method with example
- Scala List concatenation with example
- Scala List ::() operator with example
- Scala List :::() operator with example
- Scala List take() method with example
- Scala List map() method with example
- Scala List sum() method with example
- Scala List apply() method with example
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.