Java LinkedList公共int indexOf(Object o)方法(带示例)

LinkedList公共int indexOf(Object o)方法 (LinkedList public int indexOf(Object o) method)

  • This method is available in package java.util.LinkedList.indexOf(Object o).

    软件包java.util.LinkedList.indexOf(Object o)中提供了此方法。

  • This method is used to return the position or index of the first occurrence of the specified object of the linked list.

    此方法用于返回链表中指定对象首次出现的位置或索引。

  • In this method it returns -1 in two cases first will be if the element doesn't exist in the list then it returns -1 and second will be if list empty.

    在此方法中,它在两种情况下返回-1 ,首先是元素在列表中不存在,然后返回-1 ,第二种情况是如果列表为空。

Syntax:

句法:

    public int indexOf(Object o){
}

Parameter(s):

参数:

We can pass only one object as a parameter in the method of the linked list.

在链表的方法中,我们只能传递一个对象作为参数。

Return value:

返回值:

The return type of this method is int type (i.e. number type ) that means this method returns the index of the first occurrence of the element after execution else returns -1.

此方法的返回类型为int类型(即数字类型),这意味着此方法在执行后返回第一次出现的元素的索引,否则返回-1

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

Case 1: Linked List with unique elements

情况1:具有唯一元素的链接列表

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);
// We will find the position of element 30 in the linked list
System.out.println("The position of element 30 in the list is:" + list.indexOf(30));
}
}

Output

输出量

D:\Programs>javac LinkList.java
D:\Programs>java LinkList
The Current list is:[10, 20, 30, 40, 50]
The position of element 30 in the list is:2

Case 2: Linked List with duplicate elements

情况2:具有重复元素的链表

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(20);
list.add(40);
list.add(20);
list.add(50);
//  Current list Output
System.out.println("The Current list is:" + list);
// We will find the position of element 20 in the linked list 
//and here 20 comes thrice in a list so it will return 
// index of first occurrence 
System.out.println("The position of element 20 in the list is:" + list.indexOf(20));
}
}

Output

输出量

D:\Programs>javac LinkList.java
D:\Programs>java LinkList
The Current list is:[10, 20, 30, 20, 40, 20, 50]
The position of element 30 in the list is:1

翻译自: https://www.includehelp.com/java/linkedlist-public-int-indexof-object-o-method-with-example.aspx

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/545942.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

定时任务最简单的3种实现方法(超好用)

这是我的第 86 篇原创文章作者 | 王磊来源 | Java中文社群(ID:javacn666)转载请联系授权(微信ID:GG_Stone)定时任务在实际的开发中特别常见,比如电商平台 30 分钟后自动取消未支付的订单&#x…

C语言入门基础——Brute-Force算法

Brute-Force算法的基本思想是: 1) 从目标串s 的第一个字符起和模式串t的第一个字符进行比较,若相等,则继续逐个比较后续字符,否则从串s 的第二个字符起再重新和串t进行比较。 2) 依此类推,直至串t 中的每个字符依次和…

MFC:2个重载中没有一个可以转换所有参数类型

MFC:2个重载中没有一个可以转换所有参数类型用VS2008,在使用AfxMessageBox函数的时候出现以上错误,代码如下:AfxMessageBox("Here is the information!",MB_ICONINFORMATION);解决办法一:一、 AfxMessageBox(_T("H…

SQL随机生成6位数字

SELECT RIGHT(100000000 CONVERT(bigint, ABS(CHECKSUM(NEWID()))), 6)

为什么劝你放弃Maven?看看Gradle的这些优点就知道了

相信使用Java的同学都用过Maven,这是一个非常经典好用的项目构建工具。但是如果你经常使用Maven,可能会发现Maven有一些地方用的让人不太舒服:Maven的配置文件是XML格式的,假如你的项目依赖的包比较多,那么XML文件就会…

解决问题手册(QT+C++ )

目录前言QTQT介绍QMutexLockerQTimer与事件循环C介绍工作日记介绍2022前言 刚刚参加工作,感觉自己不懂的地方很多。所以我希望做一篇长时间的文章分享,把我工作中遇到的问题还有解决问题的思路都记下来。时间长了它是不是就变成了一本解决问题手册&…

css中的换行符_如何使用CSS防止项目列表中的换行符?

css中的换行符Introduction: 介绍: Dealing with various items in CSS sometimes pose very different problems. The problem could be anything, it could be related to positioning, arrangement, and whatnot, therefore all such kinds of problems require…

Java中的一些坑,汇总篇(2万字)

Photo Drew Farwell 文 | 常意1.前言

VB.NET判断一个路径的文件是否存在

使用文件系统操控文件和路径的能力是任何程序的一个重要功能。在本文所介绍的技巧中,我们将检测VB.NET 如何与文件系统进行作用。通过现有类、方法和属性示例给出简便方法完成必须的功能。为了能够操作文件系统,我们需要用到System.IO命名空间。因此&…

6款html5模板下载

http://www.100sucai.com/code/1316.htmlhttp://www.100sucai.com/code/1318.htmlhttp://www.100sucai.com/code/1310.htmlhttp://www.100sucai.com/code/1309.htmlhttp://www.100sucai.com/code/1303.htmlhttp://www.100sucai.com/code/1301.html转载于:https://blog.51cto.co…

QMutexLocker用法

QMutexLocker 详细描述:QMutexLocker类是一个方便的类,它简化了锁定和解锁互斥锁。在复杂函数和语句或异常处理代码中对QMutex进行锁定和解锁是容易出错的,很难调试。在这种情况下可以使用QMutexLocker来确保互斥锁的状态总是定义良好的。应该在需要锁定…

软件工程生命周期模型_软件生命周期模型比较| 软件工程

软件工程生命周期模型软件生命周期模型 (Software Lifecycle Models) There are five software lifecycle models that are commonly used while developing any software. These are as follows: 开发任何软件时,通常使用五个软件生命周期模型。 这些如下&#xff…

VB 日期时间函数

1.date(日期表达式)将日期表达式转换成日期类型的数据。日期表达式是任何可以解释成日期的表达式,包含日期文字,可以看作日期的字符串以及从函数返回的日期。比如:myDate CDate("99-5-20") ,这样的日期表达式必须加双引…

高并发系统 3 大利器之缓存

引言随着互联网的高速发展,市面上也出现了越来越多的网站和app。我们判断一个软件是否好用,用户体验就是一个重要的衡量标准。比如说我们经常用的微信,打开一个页面要十几秒,发个语音要几分钟对方才能收到。相信这样的软件大家肯定…

QTimer与事件循环理解

问题分析 最近在使用QT的时候发现了某些问题,查阅资料最后总结一下。我起初是想用QT在界面还在加载时加载一副动画,然后动画下面有加载的滚动条代表时间,由于测试所以界面加载没写很多东西很快就加载完成了。我就想让他加载慢点我看看效果。…

MYSQL 数学运算符问题

背景: 在mysql中 ’stringA stringB 这种类型的操作,在mysql内部会自动转化为两个double 数进行运算。 -------------------------------------------------------------------------------------------------------------------------------- 例子&a…

C语言 链表

// LinkTable.cpp : Defines the entry point for the console application. // 程序运行,用户输入学生数,根据用户输入学生数,动态创建链表,提示输入学生 // 姓名、成绩,最后输出所有学生数据以及平均成绩 #include &…

Python | 重命名现有文件(os.rename()方法的示例)

重命名现有文件 (Renaming an existing file) To change the name of an existing file – we use "rename()" method of "os" module – so to access the "rename()" method, we must have to import the module "os". 要更改现有文…

面试系列第1篇:常见面试题和面试套路有哪些?

作者 | 面哥来源 | Java面试真题解析(ID:aimianshi666)转载请联系授权(微信ID:GG_Stone)面试是人生中为数不多的改变自身命运的途径之一,当然有效的准备面试也是人生中为数不多的低投入高回报的…

c语言limits.h_ (limits.h)C ++中(整数类型的大小)的宏常量

c语言limits.hC 宏常量(整数类型的大小) (C Macro constants of (sizes of integral types)) In this tutorial, we are learning about some of the defined macro constants which are used to find the sizes of the integral types like a character, short, integer, long…