আমি কীভাবে অ্যারেলিস্টের শেষ মান পেতে পারি?
আমি অ্যারেলিস্টের শেষ সূচকটি জানি না।
getLast()
আমি কীভাবে অ্যারেলিস্টের শেষ মান পেতে পারি?
আমি অ্যারেলিস্টের শেষ সূচকটি জানি না।
getLast()
উত্তর:
নিম্নলিখিতটি List
ইন্টারফেসের অংশ (যা অ্যারেলিস্ট প্রয়োগ করে):
E e = list.get(list.size() - 1);
E
উপাদান ধরনের। তালিকাটি খালি থাকলে get
একটি নিক্ষেপ করে IndexOutOfBoundsException
। আপনি এখানে পুরো এপিআই ডকুমেন্টেশন সন্ধান করতে পারেন ।
lastElement()
তাদের জন্য পদ্ধতি Vector
কিন্তু জন্য ArrayList
। এই অসঙ্গতি নিয়ে কী ঘটবে?
ভ্যানিলা জাভাতে একটি মার্জিত উপায় নেই।
গুগল পেয়ারা গ্রন্থাগার মহান - তাদের খুঁজে বার করো Iterables
বর্গ । সাধারণ পদ্ধতির মতো NoSuchElementException
, তালিকাটি শূন্য থাকলে, এই পদ্ধতিটি একটি নিক্ষেপ করবে - আমি অনেক ভাল, বা একটি ডিফল্ট নির্দিষ্ট করার ক্ষমতা খুঁজে পেয়েছি :IndexOutOfBoundsException
size()-1
NoSuchElementException
lastElement = Iterables.getLast(iterableList);
ব্যতিক্রমের পরিবর্তে তালিকাটি খালি থাকলে আপনি একটি ডিফল্ট মানও সরবরাহ করতে পারেন:
lastElement = Iterables.getLast(iterableList, null);
বা, যদি আপনি বিকল্পগুলি ব্যবহার করেন:
lastElementRaw = Iterables.getLast(iterableList, null);
lastElement = (lastElementRaw == null) ? Option.none() : Option.some(lastElementRaw);
Iterables.getLast
চেকটি যুক্ত করা উচিত RandomAccess
যা প্রয়োগ করা হয়েছে কিনা এবং তাই এটি ও (1) এর আইটেমটিতে অ্যাক্সেস করে কিনা ।
Option
, আপনি নেটিভ জাভা ব্যবহার করতে পারেন Optional
। এটি একটি বিট ক্লিনার হবে: lastElement = Optional.ofNullable(lastElementRaw);
।
এটি করা উচিত:
if (arrayList != null && !arrayList.isEmpty()) {
T item = arrayList.get(arrayList.size()-1);
}
আমি তালিকার শেষ (এবং প্রথম) উপাদানটি পাওয়ার জন্য মাইক্রো-ব্যবহারের ক্লাস ব্যবহার করি:
public final class Lists {
private Lists() {
}
public static <T> T getFirst(List<T> list) {
return list != null && !list.isEmpty() ? list.get(0) : null;
}
public static <T> T getLast(List<T> list) {
return list != null && !list.isEmpty() ? list.get(list.size() - 1) : null;
}
}
সামান্য আরও নমনীয়:
import java.util.List;
/**
* Convenience class that provides a clearer API for obtaining list elements.
*/
public final class Lists {
private Lists() {
}
/**
* Returns the first item in the given list, or null if not found.
*
* @param <T> The generic list type.
* @param list The list that may have a first item.
*
* @return null if the list is null or there is no first item.
*/
public static <T> T getFirst( final List<T> list ) {
return getFirst( list, null );
}
/**
* Returns the last item in the given list, or null if not found.
*
* @param <T> The generic list type.
* @param list The list that may have a last item.
*
* @return null if the list is null or there is no last item.
*/
public static <T> T getLast( final List<T> list ) {
return getLast( list, null );
}
/**
* Returns the first item in the given list, or t if not found.
*
* @param <T> The generic list type.
* @param list The list that may have a first item.
* @param t The default return value.
*
* @return null if the list is null or there is no first item.
*/
public static <T> T getFirst( final List<T> list, final T t ) {
return isEmpty( list ) ? t : list.get( 0 );
}
/**
* Returns the last item in the given list, or t if not found.
*
* @param <T> The generic list type.
* @param list The list that may have a last item.
* @param t The default return value.
*
* @return null if the list is null or there is no last item.
*/
public static <T> T getLast( final List<T> list, final T t ) {
return isEmpty( list ) ? t : list.get( list.size() - 1 );
}
/**
* Returns true if the given list is null or empty.
*
* @param <T> The generic list type.
* @param list The list that has a last item.
*
* @return true The list is empty.
*/
public static <T> boolean isEmpty( final List<T> list ) {
return list == null || list.isEmpty();
}
}
isEmpty
তালিকাটি খালি কিনা এবং তা এইভাবে হওয়া উচিত কিনা তা যাচাই করে না isNullOrEmpty
এবং এটি প্রশ্নের অংশ নয় - হয় আপনি উত্তরগুলির সেটটি বাড়ানোর চেষ্টা করুন বা আপনাকে ইউটিলিটি ক্লাস সরবরাহ করুন (যা পুনরায় আবিষ্কার)।
ল্যাম্বডাস ব্যবহার:
Function<ArrayList<T>, T> getLast = a -> a.get(a.size() - 1);
আপনি যদি পারেন তবে এটির ArrayList
জন্য অদলবদল করুন ArrayDeque
, যার মতো সুবিধাজনক পদ্ধতি রয়েছে removeLast
।
জাভাতে তালিকার শেষ উপাদানটি পাওয়ার কোনও মার্জিত উপায় নেই (উদাহরণস্বরূপ items[-1]
পাইথনের তুলনায় )।
আপনি ব্যবহার করতে হবে list.get(list.size()-1)
।
জটিল পদ্ধতি কল দ্বারা প্রাপ্ত তালিকাগুলি নিয়ে কাজ করার সময়, অস্থায়ী পরিবর্তনশীলটির মধ্যে কাজের চাপটি থাকে:
List<E> list = someObject.someMethod(someArgument, anotherObject.anotherMethod());
return list.get(list.size()-1);
কুরুচিপূর্ণ এবং প্রায়শই ব্যয়বহুল বা এমনকি কার্যকর সংস্করণ না এড়াতে এটিই একমাত্র বিকল্প:
return someObject.someMethod(someArgument, anotherObject.anotherMethod()).get(
someObject.someMethod(someArgument, anotherObject.anotherMethod()).size() - 1
);
জাভা এপিআই-তে এই ডিজাইনের ত্রুটিটি সংশোধন করা হলে এটি দুর্দান্ত হবে।
List
ইন্টারফেসে যোগ করার উপযুক্ত নয় । আপনি যদি কেবলমাত্র শেষ উপাদানটিতে আগ্রহী হন তবে কেন আপনি তালিকা ফিরিয়ে আনার কোনও পদ্ধতিতে কল করতে চান? আমার মনে নেই আমি এর আগে দেখেছি।
list.get(list.size()-1)
এটি ইস্যুটি দেখানোর সর্বনিম্ন উদাহরণ। আমি সম্মত যে "অগ্রণী" উদাহরণগুলি বিতর্কিত হতে পারে এবং সম্ভবত একটি প্রান্তের মামলা হতে পারে, আমি কেবল এটিই প্রদর্শন করতে চেয়েছিলাম যে বিষয়টি কীভাবে আরও প্রচার করতে পারে। আসুন ধরে নেওয়া যাক যে ক্লাসটি someObject
বিদেশী, বাহ্যিক গ্রন্থাগার থেকে আসছে।
ArrayDeque
পরিবর্তে আপনি আরও ভাল ব্যবহার করুন।
ArrayList
।
সমাধান হিসাবে বলা হয়েছে, যদি List
খালি থাকে তবে একটি IndexOutOfBoundsException
নিক্ষেপ করা হয়। আরও ভাল সমাধান হ'ল ধরণটি ব্যবহার করা Optional
:
public class ListUtils {
public static <T> Optional<T> last(List<T> list) {
return list.isEmpty() ? Optional.empty() : Optional.of(list.get(list.size() - 1));
}
}
যেমনটি আপনি প্রত্যাশা করেছিলেন, তালিকার শেষ উপাদানটি হিসাবে ফিরে আসবে Optional
:
var list = List.of(10, 20, 30);
assert ListUtils.last(list).orElse(-1) == 30;
এটি খালি তালিকার পাশাপাশি কৌতূহলীভাবে আচরণ করে:
var emptyList = List.<Integer>of();
assert ListUtils.last(emptyList).orElse(-1) == -1;
আপনি যদি এর পরিবর্তে লিংকডলিস্ট ব্যবহার করেন তবে আপনি প্রথমটি এবং শেষটি কেবল getFirst()
এবং এর মাধ্যমে অ্যাক্সেস করতে পারেনgetLast()
(আপনি যদি আকার () -1 এর চেয়ে পরিষ্কার উপায় চান এবং (0)) পেতে পারেন
একটি লিঙ্কযুক্ত তালিকা ঘোষণা করুন
LinkedList<Object> mLinkedList = new LinkedList<>();
তারপরে আপনি যা চান তা পেতে আপনি এই পদ্ধতিগুলি ব্যবহার করতে পারেন, এক্ষেত্রে আমরা একটি তালিকার প্রথম এবং শেষ উপাদানটির বিষয়ে কথা বলছি
/**
* Returns the first element in this list.
*
* @return the first element in this list
* @throws NoSuchElementException if this list is empty
*/
public E getFirst() {
final Node<E> f = first;
if (f == null)
throw new NoSuchElementException();
return f.item;
}
/**
* Returns the last element in this list.
*
* @return the last element in this list
* @throws NoSuchElementException if this list is empty
*/
public E getLast() {
final Node<E> l = last;
if (l == null)
throw new NoSuchElementException();
return l.item;
}
/**
* Removes and returns the first element from this list.
*
* @return the first element from this list
* @throws NoSuchElementException if this list is empty
*/
public E removeFirst() {
final Node<E> f = first;
if (f == null)
throw new NoSuchElementException();
return unlinkFirst(f);
}
/**
* Removes and returns the last element from this list.
*
* @return the last element from this list
* @throws NoSuchElementException if this list is empty
*/
public E removeLast() {
final Node<E> l = last;
if (l == null)
throw new NoSuchElementException();
return unlinkLast(l);
}
/**
* Inserts the specified element at the beginning of this list.
*
* @param e the element to add
*/
public void addFirst(E e) {
linkFirst(e);
}
/**
* Appends the specified element to the end of this list.
*
* <p>This method is equivalent to {@link #add}.
*
* @param e the element to add
*/
public void addLast(E e) {
linkLast(e);
}
সুতরাং, তারপর আপনি ব্যবহার করতে পারেন
mLinkedList.getLast();
তালিকার শেষ উপাদানটি পেতে।
পেয়ারা একটি থেকে শেষ উপাদানটি পাওয়ার আরও একটি উপায় সরবরাহ করে List
:
last = Lists.reverse(list).get(0)
প্রদত্ত তালিকাটি খালি থাকলে এটি একটি নিক্ষেপ করে IndexOutOfBoundsException
java.util.Collections#reverse
এটাও করে না
যেহেতু অ্যারেলিস্টে সূচিটি 0 থেকে শুরু হয় এবং আসল আকারের আগে এক জায়গা শেষ হয় তাই শেষ অ্যারেলিস্ট উপাদানটি ফেরত দেওয়ার সঠিক বিবৃতিটি হ'ল:
int last = mylist.get (mylist.size () - 1);
উদাহরণ স্বরূপ:
অ্যারের তালিকার আকার যদি 5 হয় তবে আকার -1 = 4 শেষ অ্যারের উপাদানটি ফিরিয়ে আনবে।
তালিকার শেষ আইটেমটি হ'ল list.size() - 1
। সংগ্রহটি একটি অ্যারে দ্বারা সমর্থিত হয় এবং অ্যারে সূচক 0 থেকে শুরু হয়।
সুতরাং তালিকার উপাদান 1 অ্যারে সূচক 0 এ রয়েছে
তালিকার 2 টি উপাদানটি অ্যারের সূচক 1 এ রয়েছে
তালিকার 3 টি উপাদান অ্যারেতে সূচক 2 এ রয়েছে
ইত্যাদি
এই সম্পর্কে .. আপনার ক্লাস কোথাও ...
List<E> list = new ArrayList<E>();
private int i = -1;
public void addObjToList(E elt){
i++;
list.add(elt);
}
public E getObjFromList(){
if(i == -1){
//If list is empty handle the way you would like to... I am returning a null object
return null; // or throw an exception
}
E object = list.get(i);
list.remove(i); //Optional - makes list work like a stack
i--; //Optional - makes list work like a stack
return object;
}
আপনি যদি নিজের তালিকাটি পরিবর্তন করেন তবে listIterator()
সর্বশেষ সূচি (যা size()-1
যথাক্রমে) থেকে ব্যবহার করুন এবং পুনরাবৃত্তি করুন । আপনি যদি আবার ব্যর্থ হন তবে আপনার তালিকার কাঠামোটি পরীক্ষা করে দেখুন।
অ্যারেলিস্টের শেষ মানটি পেতে আপনাকে যা করতে হবে তা হ'ল আকার ()। প্রাক্তন জন্য। আপনি যদি পূর্ণসংখ্যার অ্যারেলিস্ট হন তবে সর্বশেষ মান পেতে আপনাকে করতে হবে
int lastValue = arrList.get(arrList.size()-1);
মনে রাখবেন, অ্যারেলিস্টে থাকা উপাদানগুলিকে সূচক মান ব্যবহার করে অ্যাক্সেস করা যেতে পারে। সুতরাং, অ্যারেলিস্টগুলি সাধারণত আইটেমগুলি অনুসন্ধান করতে ব্যবহৃত হয়।
অ্যারেগুলি তাদের দৈর্ঘ্য নামে পরিচিত একটি স্থানীয় ভেরিয়েবলে তাদের আকার সংরক্ষণ করে। "ক" নামের একটি অ্যারে দেওয়া আপনি সূচীর মান না জেনে শেষ সূচকটি উল্লেখ করতে নিম্নলিখিতটি ব্যবহার করতে পারেন
একটি [a.length -1]
আপনি এই শেষ সূচকটিতে 5 এর মান নির্ধারণ করতে:
একটি [a.length -1] = 5;
ArrayList
একটি অ্যারে নয়।
কোটলিনে, আপনি এই পদ্ধতিটি ব্যবহার করতে পারেন last
:
val lastItem = list.last()