Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import java.util.ArrayList;
import java.util.List;

public class Main {
    public static <T> List<T> takeLast(List<T> list, int length) {
        if (list.size() > length) {
            int fromIndex = Math.max(0, list.size() - length);
            int toIndex = list.size();
            List<T> newList = new ArrayList<T>();
            newList.addAll(list.subList(fromIndex, toIndex));
            return newList;
        }
        return list;
    }
}