博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java LinkedList getLast()方法与示例
阅读量:2536 次
发布时间:2019-05-11

本文共 1517 字,大约阅读时间需要 5 分钟。

LinkedList getLast()方法 (LinkedList getLast() method)

  • This method is available in package java.util.LinkedList.

    软件包java.util.LinkedList中提供了此方法。

  • This method is used to return the last or ending element of the linked list.

    此方法用于返回链表的最后一个或结尾元素。

Syntax:

句法:

Object getLast(){    }

Parameter(s):

参数:

The return type of this method is not void that means this method returns object or element (i.e. It returns only last element in the list).

该方法的返回类型不是void,这意味着该方法返回对象或元素(即,它仅返回列表中的最后一个元素)。

Return value:

返回值:

The return type of this method is not void that means this method returns object or element (i.e. It returns the only first element in the list).

此方法的返回类型不是void,这意味着此方法返回对象或元素(即,它返回列表中唯一的第一个元素)。

If the list is empty then it gives exception NoSuchElementException.

如果列表为空,则给出异常NoSuchElementException 。

Java程序演示LinkedList getLast()方法的示例 (Java program to demonstrate example of LinkedList getLast() method)

import java.util.LinkedList;	public class LinkList {
public static void main(String[] args) {
LinkedList list = new LinkedList(); // use add() method to add elements in the list list.add(10); list.add(20); list.add(30); list.add(40); list.add(50); // Current list Output System.out.println("The Current list is:" + list); // Return last element from the list System.out.println("The Last Element From The List is:" + list.getLast()); }}

Output

输出量

D:\Programs>javac LinkList.javaD:\Programs>java LinkListThe Current list is:[10, 20, 30, 40, 50]The First Element From The List is: 50

翻译自:

转载地址:http://zpvzd.baihongyu.com/

你可能感兴趣的文章
在64位系统中无法看到Microsoft Excel Application的问题
查看>>
中国剩余定理
查看>>
截取一段字符串中,两个指定字符串中间的字符串
查看>>
联合权值
查看>>
修改MAC地址的方法(未测试)
查看>>
linux ubuntu 关于vim得一些基本命令
查看>>
九度OJ 1340:小A的计算器 (进制转换)
查看>>
两篇随笔链接
查看>>
Java 类和Static关键字
查看>>
awk --- 常用技巧
查看>>
C++接口定义及实现举例
查看>>
C++
查看>>
设置数据库及表的默认字符集
查看>>
hdu-5596 GTW likes gt(模拟+优先队列)
查看>>
codeforces 711A A. Bus to Udayland(水题)
查看>>
python在不同层级目录import模块的方法
查看>>
Git的使用--如何将本地项目上传到Github
查看>>
MySQL连接localhost失败
查看>>
networkComms 通信框架之 消息处理器
查看>>
Java基础——详尽说明try-catch-finally的用法
查看>>