ruby 将日期转化为时间_Ruby中的日期和时间类

ruby 将日期转化为时间

Ruby数据和时间类 (Ruby Data and Time Classes)

In any program written in any language, at any point of time you may need to fetch the date and time of the system at that instant. Ruby facilitates you with three classes related to Date and Time namely:

在用任何语言编写的任何程序中,您可能需要在任何时间获取该时刻的系统日期和时间。 Ruby通过与日期和时间相关的三个类为您提供便利:

  • Date

    日期

  • DateTime

    约会时间

  • Time

    时间

If you are working with dates, you are required to understand some of the terms which are related to date such as:

如果使用日期,则需要了解一些与日期有关的术语,例如:

  1. Calendar date: You must be familiar with the term. It is a specific day of a calendar month of a distinct year.

    日历日期 :您必须熟悉该术语。 它是不同年份的日历月的特定日期。

  2. Ordinal date: When you identify a specific date of a year with the help of an ordinary year. It is an ordinal date.

    原始日期 :当您借助普通年份确定特定的日期时。 这是一个序数日期。

  3. Week date: It is the combination of calendar week and number of days. The week that includes the first Thursday of the distinct year is the first calendar week of that year.

    周日期 :是日历周和天数的组合。 包括不同年份的第一个星期四的一周是该年的第一个日历周。

  4. Julian day number: It is a kind of progression of date since noon on January 1, 4713 BCE.

    朱利安天数 :是公元前4713年1月1日中午以来日期的一种演变。

Now, let us talk about all those three classes related to date and Time which we have mentioned above in a detailed manner.

现在,让我们详细讨论上面提到的与日期和时间相关的所有这三个类。

1)日期 (1) Date)

Date class objects are mutable means that they cannot modify themselves at any point of time during the execution process. You will need to include date class in Ruby code before implementing date objects. You can create a date object with ::new, ::parse, ::today, ::jd, ::strptime.

日期类对象是可变的,意味着它们无法在执行过程中的任何时间修改自己。 在实现日期对象之前,您将需要在Ruby代码中包括日期类 。 您可以使用:: new , :: parse , :: today , :: jd和:: strptime创建日期对象。

Now let us see, how date objects are created with the help of an example.

现在让我们看看如何借助示例创建日期对象

=begin
Ruby program to show the implementation of 
date class.
=end
require 'date'
puts Date.new(2020,4,12)            
puts Date.jd(2451877)               
puts Date.ordinal(2020,3)         
puts Date.commercial(2020,12,6)     
puts Date.parse('2020-02-03')    
puts Date.strptime('03-02-2020', '%m-%d-%Y')    

Output:

输出:

2020-04-12
2000-11-28
2020-01-03
2020-03-21
2020-02-03
2020-03-02

Here,

这里,

  1. new: new method will create a new object depending upon the parameters passed.

    new :new方法将根据传递的参数创建一个新对象。

  2. jd: It is provided with the local time and returns the Julian day number.

    jd :提供当地时间,并返回儒略日。

  3. ordinal: It creates a date object depending upon the parameter passed. The parameter may be negative or positive but can never be zero.

    ordinal :根据传递的参数创建日期对象。 参数可以是负数或正数,但永远不能为零。

  4. commercial: It creates a date object depending upon the provided week date. The parameter can be negative or positive but can never be zero.

    commercial :根据提供的星期日期创建日期对象。 参数可以是负数或正数,但永远不能为零。

  5. parse: It creates a date object and parses the representation of date and time.

    parse :它创建一个日期对象并解析日期和时间的表示形式。

  6. strptime: It returns a hash of parsed elements after parsing the provided representation of date of time along with the specified template.

    strptime :在解析提供的时间日期表示形式和指定模板之后,它返回解析元素的哈希值。

2)日期时间 (2) DateTime)

This class is a subclass of Date class. You can create an object of DateTime class with the help of DateTime.new, DateTime.ordinal, DateTime.parse, DateTime.jd, DateTime.commercial, DateTime.now, and so on. Let us see its example:

此类是Date类的子类。 您可以在DateTime.new , DateTime.ordinal , DateTime.parse , DateTime.jd , DateTime.commercial , DateTime.now等帮助下创建DateTime类的对象。 让我们看一下它的例子:

=begin
Ruby program to show the implementation of 
DateTime class.
=end
require 'date'   
d = DateTime.parse('12th Oct 2020 13:37:05+05:40')   
puts d.hour                 
puts d.min                 
puts d.sec                  
puts d.offset 

Output

输出量

13
37
5
17/72

In the above code, we are storing date in an object after parsing it. Then we are calling its multiple methods like an hour, min, sec and offset.

在上面的代码中,我们将日期解析后存储在对象中。 然后我们调用它的多个方法,例如小时 , 分钟 , 秒和偏移量 。

3)时间 (3) Time)

Time class is an abstraction of Date and DateTime class. You can create its objects with the help of ::new which will use the current system's time. You can pass year, month, day, hour, min, sec in the parameter list. An example is given below:

时间类DateDateTime类的抽象。 您可以在:: new的帮助下创建其对象,这将使用当前系统的时间。 您可以在参数列表中传递year , month , day , hour , min , sec 。 下面是一个示例:

=begin
Ruby program to show the implementation of 
Time class.
=end
time1 = Time.new
puts "Printing Current Time: "+ time1.inspect
puts time1.year
puts time1.month   
puts time1.day     
puts time1.hour    
puts time1.min     
puts time1.sec     
puts time1.zone  

Output

输出量

Printing Current Time: 2019-09-25 06:26:58 +0530
2019
9
25
6
26
58
India Standard Time

翻译自: https://www.includehelp.com/ruby/date-and-time-classes.aspx

ruby 将日期转化为时间

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

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

相关文章

AsyncHttpClien访问网络案例分析

Android数据存储的四种方式分别是:SharedPreferences存储、File文件存储、Network网络存储和sqlite数据库存储,网络存储需要使用AsyncHttpClient发送请求,并将数据存储到后台数据库中,关于AsyncHttpClient、HttpClient、HttpURLCo…

i2c-toos 交互数据_什么是CD-i(交互式光盘)?

i2c-toos 交互数据CD-i:交互式光盘 (CD-i: Compact Disk-Interactive) CD-i is an abbreviation of "Compact Disk-Interactive". It is a standard of software and hardware-based configuration of digital optical disc data storage, created mutual…

4g 中bis代表什么_BIS的完整形式是什么?

4g 中bis代表什么BIS:印度标准局 (BIS: Bureau of Indian Standards) BIS is an abbreviation of the Bureau of Indian Standards. It is the National Standard Body of India which is operating in the groundwork and execution of the standards, certificati…

Feature selection

原文:http://scikit-learn.org/stable/modules/feature_selection.html The classes in the sklearn.feature_selection module can be used for feature selection/dimensionality reduction on sample sets, either to improve estimators’ accuracy scores or to boost the…

ronald aai_AAI的完整形式是什么?

ronald aaiAAI:印度机场管理局 (AAI: Airport Authority of India) AAI is an abbreviation of the Airport Authority of India. It operates under the Ministry of Civil Aviation. It is in charge of creating, crafting, maintaining and enhancing the civil…

scala 环境变量_Scala变量的范围

scala 环境变量Scala变量范围 (Scala variables scope) Scope of the variable is the block of code until which the variable can be used within the scope of a variable. Any operation can be performed on it but accessing it outside the scope will give an error. …

使用Eclipse-Maven-git做Java开发(13)--导入git仓库的代码到eclipse

2019独角兽企业重金招聘Python工程师标准>>> 前面讲到了怎么使用osc的git服务进行代码托管。至此,我们已经可以使用git进行文件的版本管理了,甚至可以进行不需要IDE的编程了,但是我们绝大多数时候还是需要IDE的,接下来…

python 三维图直方图_Python | 阶梯直方图

python 三维图直方图A histogram is a graphical technique or a type of data representation using bars of different heights such that each bar groups numbers into ranges (bins or buckets). Taller the bar higher the data falls in that bin. A Histogram is one o…

ExtJS4.2学习(21)动态菜单与表格数据展示操作总结篇2

运行效果&#xff1a; 此文介绍了根据操作左侧菜单在右面板展示相应内容。 一、主页 先看一下跳转主页的方式&#xff1a;由在webapp根目录下的index.jsp跳转至demo的index.jsp 下面是demo的index.jsp的代码 <% page language"java" contentType"text/html; …

数据分析 数据清理_数据清理| 数据科学

数据分析 数据清理数据清理 (Data Cleaning) Data cleaning is the way toward altering information to guarantee that it is right, precise, and significant. The definition may be straightforward, yet information cleaning is utilized in numerous situations. Like…

jQuery之call()方法的使用

最近在做项目时候&#xff0c;写了几行关于DOM操作的代码&#xff0c;在方法中使用了this&#xff0c;在后期重构的时候&#xff0c;想将这段分离出来做成一个方法。 最开始想的很简单&#xff0c;就直接分离出来使用方法名称调用即可。 但是实际操作的时候没有效果&#xff0c…

GMTA的完整形式是什么?

GMTA&#xff1a;伟大的思想一致 (GMTA: Great Minds Think Alike) GMTA is an abbreviation of "Great Minds Think Alike". GMTA是“ Great Minds Think Alike”的缩写 。 It is an expression, which is commonly used in messaging or chatting on social media…

github的使用

GitHub操作总结 : 总结看不明白就看下面的详细讲解. GitHub操作流程 : 第一次提交 : 方案一 : 本地创建项目根目录, 然后与远程GitHub关联, 之后的操作一样; -- 初始化git仓库 :git init ; -- 提交改变到缓存 :git commit -m description ; -- 本地git仓库关联GitHub仓库 : g…

sql更改完整模式报错_SQL的完整形式是什么?

sql更改完整模式报错SQL&#xff1a;结构化查询语言 (SQL: Structured Query Language) SQL is an abbreviation of Structured Query Language. It is a programming language developed and designed for handling structured data in Relational Database Management System…

基于微服务架构,改造企业核心系统之实践

2019独角兽企业重金招聘Python工程师标准>>> 1. 背景与挑战 随着公司国际化战略的推行以及本土业务的高速发展&#xff0c;后台支撑系统已经不堪重负。在吞吐量、稳定性以及可扩展性上都无法满足日益增长的业务需求。对于每10万元额度的合同&#xff0c;从销售团队…

bkg bnc_BNC的完整形式是什么?

bkg bncBNC&#xff1a;刺刀Neill–Concelman (BNC: Bayonet Neill–Concelman) BNC is an abbreviation of "Bayonet Neill–Concelman". BNC是“刺刀Neill–Concelman”的缩写 。 It is also known as "British Naval Connector" or "Bayonet Nut …

使用visio 提示此UML形状所在的绘图页不是UML模型图的一部分 请问这个问题怎么解决?...

解决方法新建->选择软件与数据库模板->选择UML模型图->注意&#xff1a;如果不选择UML模型图的话&#xff0c;可能会出现无法编辑形状文本&#xff0c;提示“此UML形状所在的绘图页不是UML模型图的一部分&#xff0c;该形状设计用于利用UML模型图模板创建的绘图”关注…

iOS之 开发常用到的宏定义

不久前做过一个小项目种用到了就记录下来方便自己以后使用&#xff0c;一个非常实用的宏定义来打印函数名称等 #ifdef DEBUG #define DebugLog(fmt, ...) NSLog(("\n[文件名:%s]\n""[函数名:%s]\n""[行号:%d] \n" fmt), __FILE__, __FUNCTION__,…

agp模式_AGP的完整形式是什么?

agp模式AGP&#xff1a;加速图形端口 (AGP: Accelerated Graphics Port ) AGP is an abbreviation of the "Accelerated Graphics Port". AGP是“加速图形端口”的缩写 。 It was created and developed as a high-speed point-to-point channel for putting togeth…

XCopy命令实现增量备份

xcopy XCOPY是COPY的扩展&#xff0c;可以把指定的目录连文件和目录结构一并拷贝&#xff0c;但不能拷贝系统文件&#xff1b;使用时源盘符、源目标路径名、源文件名至少指定一个&#xff1b;选用/S时对源目录下及其子目录下的所有文件进行COPY。除非指定/E参数&#xff0c;否则…