Mục lục bài viết

Mẹo Hướng dẫn Get last item in list java Chi Tiết

Update: 2021-12-24 05:05:04,Bạn Cần biết về Get last item in list java. Quý quý khách trọn vẹn có thể lại phản hồi ở cuối bài để Ad đc tương hỗ.

838

Learn how to get the index of last occurrence of a element in the ArrayList. We will be using ArrayList.lastIndexOf() method to get the last index.

Tóm lược đại ý quan trọng trong bài

  • 1. ArrayList.lastIndexOf() method
  • 2. ArrayList lastIndexOf() example to get last index of element
  • Was this post helpful?

1. ArrayList.lastIndexOf() method

This method returns the index of the last occurrence of the specified element in this list. It will return ‘-1’ if the list does not contain the element.

1.1. lastIndexOf() method syntaxpublic int lastIndexOf(Object object)
if (o == null)
for (int i = size-1; i >= 0; i–)
if (elementData[i]==null)
return i;
else
for (int i = size-1; i >= 0; i–)
if (o.equals(elementData[i]))
return i;

return -1;

1.2. lastIndexOf() method parameter

object the object which needs to be searched in the list for its last index position.

1.3. lastIndexOf() return value

Return value is of int type.

  • index last index position of element if element is found.
  • -1 if element is NOT found.

2. ArrayList lastIndexOf() example to get last index of element

Java program for how to get last index of arraylist. In this example, we are looking for last occurrence of string alex in the given list.

Note Please note that arraylist index starts from 0.

import java.util.ArrayList;
import java.util.Arrays;
public class ArrayListExample

public static void main(String[] args)

ArrayList list = new ArrayList(Arrays.asList(“alex”, “brian”, “charles”,”alex”,”dough”,”gary”,”alex”,”harry”));
int lastIndex = list.lastIndexOf(“alex”);
System.out.println(lastIndex);
lastIndex = list.lastIndexOf(“hello”);
System.out.println(lastIndex);

Program output.

6
-1

Happy Learning !!

Read More:

A Guide to Java ArrayList
ArrayList Java Docs

Was this post helpful?

Let us know if you liked the post. Thats the only way we can improve.YesNo

Reply
9
0
Chia sẻ

Video full hướng dẫn Chia Sẻ Link Down Get last item in list java ?

– Một số Keyword tìm kiếm nhiều : ” đoạn Clip hướng dẫn Get last item in list java tiên tiến và phát triển nhất , Share Link Cập nhật Get last item in list java “.

Hỏi đáp vướng mắc về Get last item in list java

Bạn trọn vẹn có thể để lại Comment nếu gặp yếu tố chưa hiểu nha.
#item #list #java