ruby array_Ruby中带有示例的Array.index()方法

ruby array

Array.index()方法 (Array.index() Method)

In this article, we will study about Array.index() method. You all must be thinking the method must be doing something which is related index of certain element. It is not as simple as it looks. Well, we will figure this out in the rest of our content. We will try to understand it with the help of syntax and demonstrating program codes.

在本文中,我们将研究Array.index()方法 。 你们都必须认为方法必须在做某些与某些元素相关的索引的事情。 它并不像看起来那么简单。 好吧,我们将在其余内容中解决这个问题。 我们将尝试借助语法并演示程序代码来理解它。

Method description:

方法说明:

This method is one of the examples of the Public instance method which is specially defined in the Ruby library for Array class. This method is used to find the index of a certain element of the Array instance with the help of the element being passed as the argument. This method works in the way that it returns the index of the first object in Array instance. If you are providing a block instead of an argument then the method will return the index of the first object for which the block returns a Boolean value "True" and returns "nil" if no match is found. This method is one of the examples of non-destructive methods where the changes made by these methods are permanent. There is no destructive version of this method.

此方法是Ruby类库中为Array类专门定义的Public实例方法的示例之一。 此方法用于在作为参数传递的元素的帮助下找到Array实例中某个元素的索引。 此方法以返回Array实例中第一个对象的索引的方式工作。 如果提供的是块而不是参数,则该方法将返回第一个对象的索引,该对象将为其返回布尔值“ True” ,如果找不到匹配项,则返回“ nil” 。 此方法是非破坏性方法的示例之一,其中通过这些方法所做的更改是永久性的。 此方法没有破坏性版本。

Syntax:

句法:

    array_instance.index()
or
array_instance.index(|item| block)

Argument(s) required:

所需参数:

This method accepts an argument which should be present in the Array instance. This method returns nil if that element is not present in the Array instance.

此方法接受应在Array实例中出现的参数。 如果Array实例中不存在该元素,则此方法返回nil。

Example 1:

范例1:

=begin
Ruby program to demonstrate index method
=end	
# array declaration
lang = ["C++","Java","Python","Ruby","Perl"]
puts "Array index implementation."
puts "Enter the element whose index you want to find:"
ele = gets.chomp
if(ind = lang.index(ele))
puts "#{ele} found at index #{ind}"
else
puts "element is not a part of the Array instance"
end

Output

输出量

Array index implementation.
Enter the element whose index you want to find:
Ruby
Ruby found at index 3

Explanation:

说明:

In the above code, you can observe that we are asking the user for the element whose index she wants to find. The user has entered the object "Ruby" which is present in the 3rd index of the Array instance.

在上面的代码中,您可以观察到我们正在向用户询问要查找其索引的元素。 用户已经输入了对象“Ruby”,这是存在于阵列实例的第三索引。

Example 2:

范例2:

=begin
Ruby program to demonstrate index method
=end	
# array declaration
lang = ["C++","Java","Python","Ruby","Perl"]
puts "Array index implementation."
puts "Enter the element whose index you want to find:"
ele = gets.chomp
if(ind = lang.index{|ind| ind == ele})
puts "#{ele} found at index #{ind}"
else
puts "element is not a part of the Array instance"
end

Output

输出量

Array index implementation.
Enter the element whose index you want to find:
Python
Python found at index 2

Explanation:

说明:

In the above code, you can see that we are passing a block inside the method. The method is returning the index of the first element for which the block stands to be True.

在上面的代码中,您可以看到我们在方法内部传递了一个块。 该方法返回该块为True的第一个元素的索引。

翻译自: https://www.includehelp.com/ruby/array-index-method-with-example.aspx

ruby array

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

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

相关文章

面试突击58:truncate、delete和drop的6大区别!

作者 | 磊哥来源 | Java面试真题解析(ID:aimianshi666)转载请联系授权(微信ID:GG_Stone)在 MySQL 中,使用 truncate、delete 和 drop 都可以实现表删除,但它们 3 个的使用场景和执行…

scala 去除重复元素_Scala程序从列表中删除重复项

scala 去除重复元素List in Scala is a collection that stores data in the form of a liked-list. The list is an immutable data structure but may contain duplicate elements. And in real life implementation duplicate elements increase the runtime of the program…

智力游戏

【Description】whitecloth 最近迷上了一个你小时候已经玩厌了的游戏:移火柴棒。他现在吵着要你陪他玩,你没有办法,只好写一个程序来完成这个工作了。你被给出了一个火柴拼成的等式,比如说下面这个:( 5 7 …

面渣逆袭:MySQL六十六问!建议收藏

基础MySQ Logo作为SQL Boy,基础部分不会有人不会吧?面试也不怎么问,基础掌握不错的小伙伴可以跳过这一部分。当然,可能会现场写一些SQL语句,SQ语句可以通过牛客、LeetCode、LintCode之类的网站来练习。1. 什么是内连接…

C ++中带有示例的llabs()函数

C llabs()函数 (C llabs() function) llabs() function is a library function of cstdlib header. It used to get the absolute of the given value. This function is similar to the abs() and labs() functions except for the type of the parameter, it is used for th…

Mysql+Heartbeat+Drbd生产环境高可用部署若干问题解惑

MysqlHeartbeatDrbd生产环境高可用部署若干问题解惑:############################################################## Purpose: MysqlHeartbeatdrbd高可用部署中学生的几个疑惑解答## USER YYYY-MM-DD – ACTION # Oldboy 2011-3-14 – Created# …

try-with-resources 中的一个坑,注意避让

小伙伴们好呀,昨天复盘以前做的项目(大概有一年了),看到这个 try-catch ,又想起自己之前掉坑的这个经历 ,弄了个小 demo 给大家感受下~ 😄问题1一个简单的下载文件的例子。这里会出现什么情况…

c++ abort 函数_C ++中带有示例的abort()函数

c abort 函数C abort()函数 (C abort() function) abort() function is a library function of cstdlib header. It is used to abort the current process. For the abnormal program termination – we can use abort() function. abort()函数是cstdlib标头的库函数。 用于中…

第 二 十 八 天 :LB 负 载 均 衡 搭 建 之 LVS

小Q:抱怨,是一种负能量,犹如搬起石头砸自己的脚,与人无益,于己不利,于事无补 前面我们介绍了HA高可用集群,今天我们来了解下LB负载均衡集群,在学习完基本的搭建后,在扩展…

一个依赖搞定Spring Boot 配置文件脱敏

经常会遇到这样一种情况:项目的配置文件中总有一些敏感信息,比如数据源的url、用户名、密码....这些信息一旦被暴露那么整个数据库都将会被泄漏,那么如何将这些配置隐藏呢?今天介绍一种方案,让你在无感知的情况下实现配…

vector clone_Java Vector clone()方法与示例

vector clone向量类clone()方法 (Vector Class clone() method) clone() method is available in java.util package. clone()方法在java.util包中可用。 clone() method is used to copy or clone or return a shallow copy of this Vector. clone()方法用于复制,克…

js ‘use strict’详解

2019独角兽企业重金招聘Python工程师标准>>> 一、概述 除了正常运行模式,ECMAscript 5添加了第二种运行模式:"严格模式"(strict mode)。顾名思义,这种模式使得Javascript在更严格的条件下运行。 …

如何优雅的写 Controller 层代码?

本篇主要要介绍的就是controller层的处理,一个完整的后端请求由4部分组成:1. 接口地址(也就是URL地址)、2. 请求方式(一般就是get、set,当然还有put、delete)、3. 请求数据(request,有head跟body)、4. 响应数据(response)本篇将解…

java uuid静态方法_Java UUID version()方法与示例

java uuid静态方法UUID Class version()方法 (UUID Class version() method) version() method is available in java.util package. version()方法在java.util包中可用。 version() method is used to get the version number linked with this UUID. version()方法用于获取与…

黑马程序员——选择排序

排序算法有很多,记得当初一开始学C时就有这种问题。那个时候会用也最易理解的排序算法,就是选择排序了(当时并不知道这样的算法还有名字)。 思想 还是先来看看选择排序的思想。选择排序的思想非常直接,不是要排序么&am…

面试突击60:什么情况会导致 MySQL 索引失效?

作者 | 磊哥来源 | Java面试真题解析(ID:aimianshi666)转载请联系授权(微信ID:GG_Stone)为了验证 MySQL 中哪些情况下会导致索引失效,我们可以借助 explain 执行计划来分析索引失效的具体场景。…

treeset java_Java TreeSet last()方法与示例

treeset javaTreeSet类的last()方法 (TreeSet Class last() method) last() method is available in java.util package. last()方法在java.util包中可用。 last() method is used to return the largest element that exists in this TreeSet. last()方法用于返回此TreeSet中存…

使用PHP建立SVN的远程钩子,使用exec命令自动更新SVN的代码

2019独角兽企业重金招聘Python工程师标准>>> 本操作需要使用到php执行sudo命令的权限,相关设置可以参考:apache/Nginx下的PHP/Ruby执行sudo权限的系统命令 通过Svn的钩子功能,可以在我们执行SVN操作时,同时自动执行一些…

java reader_Java Reader ready()方法与示例

java readerReader类ready()方法 (Reader Class ready() method) ready() method is available in java.io package. ready()方法在java.io包中可用。 ready() method is used to check whether this stream is ready to be read or not. ready()方法用于检查此流是否已准备好被…

Java 中 for 和 foreach 哪个性能高?

作为程序员每天除了写很多 if else 之外,写的最多的也包含 for 循环了,都知道我们 Java 中常用的 for 循环有两种方式,一种是使用 for loop,另一种是使用 foreach,那如果问你,这两种方式哪一种效率最高&…