ruby hash方法_Hash.fetch()方法以及Ruby中的示例

ruby hash方法

Hash.fetch()方法 (Hash.fetch() Method)

In this article, we will study about Hash.fetch() Method. The working of this method can be predicted with the help of its name but it is not as simple as it seems. Well, we will understand this method with the help of its syntax and program code in the rest of the content.

在本文中,我们将研究Hash.fetch()方法 。 可以借助其名称来预测此方法的工作,但是它并不像看起来那样简单。 好了,我们将在其余内容中借助其语法和程序代码来理解此方法。

Method description:

方法说明:

This method is a public instance method that is defined in the ruby library especially for Hash class. This method requires keys whose values are fetched by this method. This method works in the way that it returns the value or values from the hash object for a given key or keys. In case the key is not found in the hash instance then the result is dependent upon the type of method call done. The possible method calls are listed below:

此方法是在ruby库中定义的公共实例方法,特别是针对Hash类。 此方法需要通过此方法获取其值的键。 此方法的工作方式是,它从给定键或多个键的哈希对象中返回一个或多个值。 如果在哈希实例中找不到键,则结果取决于完成的方法调用的类型。 下面列出了可能的方法调用:

  • Without any other argument: If no other argument is provided and the key is not found then the method will throw a "KeyError" exception.

    没有任何其他自变量 :如果未提供其他自变量且未找到键,则该方法将引发“ KeyError”异常。

  • With other arguments (s): The other argument is considered as the default argument. If the key is not found then that default argument will be returned from the method.

    与其他参数一起使用 :另一个参数被视为默认参数。 如果找不到该键,则将从该方法返回该默认参数。

  • With block: If the block is provided and the key is not found then that block will be run and the result will be returned in case the key is not found.

    With块 :如果提供了该块,但未找到键,则该块将运行,如果未找到键,则将返回结果。

Syntax:

句法:

    Hash_object.fetch(…,[default]);
or
Hash_object_fetch(key(s))
or
Hash_object_fetch{|key| block}

Argument(s) required:

所需参数:

There is no restriction upon passing the arguments. You can pass arguments as per your requirement. The last argument will always be considered as the default argument.

传递参数没有限制。 您可以根据需要传递参数。 最后一个参数将始终被视为默认参数。

Example 1:

范例1:

=begin
Ruby program to demonstrate fetch method
=end	
hash1={"color"=>"Black","object"=>"phone","love"=>"mom","fruit"=>"Kiwi","vege"=>"potato"}
puts "Hash.fetch implementation"
puts "Enter the key you want to search:"
ky = gets.chomp
if(hash1.fetch(ky))
puts "Key found successfully. The value is #{hash1.fetch(ky)}"
else
puts "No key found"
end

Output

输出量

RUN 1:
Hash.fetch implementation
Enter the key you want to search:
color
Key found successfully. The value is Black
RUN 2:
Hash.fetch implementation
Enter the key you want to search:
velvet
key not found: "velvet"
(repl):12:in `fetch'
(repl):12:in `<main>'

Explanation:

说明:

In the above code, you can simply observe that we have invoked the method with a key which is being asked by the user. In Run 2, you may see that the exception is thrown when the key is not found in the hash.

在上面的代码中,您可以简单地观察到我们已经使用了用户要求的密钥来调用该方法。 在运行2中,您可能会看到在哈希中找不到键时引发了异常。

Example 2:

范例2:

=begin
Ruby program to demonstrate fetch method
=end	
hash1={"color"=>"Black","object"=>"phone","love"=>"mom","fruit"=>"Kiwi","vege"=>"potato"}
puts "Hash.fetch implementation"
puts "Enter the key you want to search:"
ky = gets.chomp
puts "The value of #{ky} is #{hash1.fetch(ky,"Not found")}"

Output

输出量

Hash.fetch implementation
Enter the key you want to search:
cloth
The value of cloth is Not found

Explanation:

说明:

In the above code, you can observe that we have passed a default argument along with the key inside the method. You can see that the default object is returned when the key is not found in the hash instance.

在上面的代码中,您可以观察到我们已经在方法内部传递了默认参数以及键。 您可以看到,在哈希实例中未找到键时,将返回默认对象。

Example 3:

范例3:

=begin
Ruby program to demonstrate fetch method
=end	
hash1={"color"=>"Black","object"=>"phone","love"=>"mom","fruit"=>"Kiwi","vege"=>"potato"}
puts "Hash.fetch implementation"
puts "Enter the key you want to search:"
ky = gets.chomp
puts "The value of #{ky} is #{hash1.fetch(ky){|ky| "Sorry! #{ky} is missing"}}"

Output

输出量

Hash.fetch implementation
Enter the key you want to search:
cloth
The value of cloth is Sorry! cloth is missing

Explanation:

说明:

In the above code, you can observe that we are passing a block along with the method. That block has been run and its value has been returned when the key is not found in the hash object.

在上面的代码中,您可以观察到我们将块与方法一起传递。 当在哈希对象中找不到键时,该块已经运行,并且其值已返回。

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

ruby hash方法

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

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

相关文章

MySQL 死锁了,怎么办?

作者&#xff1a;小林coding提纲如下&#xff1a;正文有个业务主要逻辑就是新增订单、修改订单、查询订单等操作。然后因为订单是不能重复的&#xff0c;所以当时在新增订单的时候做了幂等性校验&#xff0c;做法就是在新增订单记录之前&#xff0c;先通过 select ... for upda…

lcfirst_PHP lcfirst()函数与示例

lcfirstPHP lcfirst()函数 (PHP lcfirst() function) lcfirst() function is a string function, it is used to convert first character to lowercase. It accepts string and returns string with first lowercase character. lcfirst()函数是一个字符串函数&#xff0c;用于…

在notepad++中运行python代码

#在notepad中运行python代码1、安装插件pyNPP&#xff0c; 2、允许插件pyNPP中的第一个和第二个选项即可&#xff0c;如果代码过少代码执行一闪而过&#xff0c;可能无法看到&#xff0c;可加入少量sleep时间即可 方法二&#xff1a;1、安装插件NppExec2、打开NppExec--Execute…

10 张图搞懂服务注册发现机制

在微服务架构或分布式环境下&#xff0c;服务注册与发现技术不可或缺&#xff0c;这也是程序员进阶之路必须要掌握的核心技术之一&#xff0c;本文通过图解的方式带领大家轻轻松松掌握。引入服务注册与发现组件的原因先来看一个问题&#xff0c;假如现在我们要做一个商城项目&a…

c# datetime._C#| DateTime.GetHashCode()方法与示例

c# datetime.DateTime.GetHashCode()方法 (DateTime.GetHashCode() Method) DateTime.GetHashCode() method is used get the 32-bit signed integer hash code of DateTime class object. DateTime.GetHashCode()方法用于获取DateTime类对象的32位带符号整数哈希码。 Syntax:…

ASP.NET 5 Beta8 已经发布

Microsoft ASP.NET and Web Tools 2015 (Beta8) http://www.microsoft.com/en-us/download/details.aspx?id49442 .net core 完成了98%&#xff0c;绝大部分类库完成了跨平台开发&#xff0c;已经基本可用&#xff0c;下一版本为RC&#xff0c;发布时间为12月&#xff0c;将可…

面试突击65:HTTPS有什么优点?说一下它的执行流程?

作者 | 磊哥来源 | Java面试真题解析&#xff08;ID&#xff1a;aimianshi666&#xff09;转载请联系授权&#xff08;微信ID&#xff1a;GG_Stone&#xff09;说到 HTTPS 相信大部分人都是不陌生&#xff0c;因为目前我们使用的绝大数网站都是基于 HTTPS 的&#xff0c;比如以…

nanf flash校验_C ++中带有示例的nanf()函数

nanf flash校验C Nanf()函数 (C nanf() function) nanf() function is a library function of cmath header, it is used to get the NaN value of type float. It accepts an argument (which is an implementation-specific C String – to get NaN value we have to pass a…

Cell.reuseIdentifier 指什么

Cell.reuseIdentifier 指的是 默认为空&#xff0c;如果不定义&#xff0c;在执行 [_tableView registerNib:templateCellNib forCellReuseIdentifier:_templateCell.reuseIdentifier]; 时&#xff0c;提示 must pass a valid reuse identifier to -[UITableView registerNib:f…

缓存穿透、缓存雪崩、缓存击穿?

背景 在现代软件架构中&#xff0c;缓存的应用已经非常普及。缓存的使用在面试和实践中都是避不开的硬技能、硬知识&#xff0c;如果你说还不太熟悉缓存的使用&#xff0c;可能都不好意思说自己是程序员。这篇文章&#xff0c;带大家进一步学习在缓存使用中不得不考虑三个特殊场…

c语言 div ldiv_C ++中带有示例的ldiv()函数

c语言 div ldivC ldiv()函数 (C ldiv() function) ldiv() function is a library function of cstdlib header. It is used for integral division, it accepts two parameters (numerator and denominator) and returns a structure that contains the quot (quotient) and r…

网盘搜索

http://pan.java1234.com1、在http://baidu.com的搜索框中输入&#xff1a;site:http://pan.baidu.com 搜索词&#xff08;回复中林涛同学建议第一条如果用谷歌搜site:百度网盘的话效果会好一点&#xff09;2、壹搜 网盘搜索引擎3、盘易搜 盘易搜-百度网盘搜索4、BD盘搜索 百度…

如何防止订单重复支付?

大家好&#xff0c;我是磊哥&#xff0c;想必大家对在线支付都不陌生&#xff0c;今天和大家聊聊如何防止订单重复支付。看看订单支付流程我们来看看&#xff0c;电商订单支付的简要流程&#xff1a;订单钱包支付流程从下单/计算开始&#xff1a;下单/结算&#xff1a;这一步虽…

c ++atoi函数_atoi()函数以及C ++中的示例

c atoi函数C atoi()函数 (C atoi() function) atoi() function is a library function of cstdlib header. It is used to convert the given string value to the integer value. It accepts a string containing an integer (integral) number and returns its integer valu…

IOS沙盒中的Documents、Library、tmp区别

1.Documents&#xff1a; 用户生成的文件、其他数据及其他程序不能重新创建的文件&#xff0c;iTunes备份和恢复的时候会包括此目录。 2.Library/Caches&#xff1a; 可以重新下载或者重新生成的数据,数据库缓存文件和可下载内容应该保存到这个文件夹,iTunes不会备份此目录&…

3 分钟快速上手 Spring 事件机制

小伙伴们好呀~ 今天来和大家分享下这个 Spring事件机制内容概览image-20210829132019387原理image-20210828184103069这个熟悉 观察者模式 的小伙伴应该一眼就看出来啦~其实就是个简单版的 发布-订阅模式有三个核心类&#x1f447;事件 ApplicationEvent事件发布器 Application…

mis dss gis_MIS中的决策支持系统(DSS)

mis dss gisThe Decision Support System is always helpful to management people to take decisions/decisions and finds the key business insights from available information systems. 决策支持系统始终有助于管理人员做出决策/决策&#xff0c;并从可用的信息系统中找到…

使用Grunt构建自动化开发环境

1、准备工作 1&#xff09;首页确保电脑上网&#xff0c;以及能够访问https://registry.npmjs.org/&#xff0c;因需从此网站中下载安装相应的插件; 2&#xff09;电脑安装Node.js&#xff0c;Grunt及Grunt插件都是基于node.js运行的&#xff1b;如果你电脑上未装node.js&#…

面试突击66:请求转发和请求重定向有什么区别?

作者 | 磊哥来源 | Java面试真题解析&#xff08;ID&#xff1a;aimianshi666&#xff09;转载请联系授权&#xff08;微信ID&#xff1a;GG_Stone&#xff09;在 Java 中&#xff0c;跳转的实现方式有两种&#xff1a;请求转发和请求重定向&#xff0c;但二者是完全不同的&…

python 示例_带有示例的Python列表copy()方法

python 示例列出copy()方法 (List copy() Method) copy() method is used to copy a list, the method is called with this list (current/original list) and returns a list of the same elements. copy()方法用于复制列表&#xff0c;该方法与此列表一起调用(当前/原始列表…