scala 当前日期_如何在Scala中检查当前日期和时间?

scala 当前日期

Scala is a general-purpose programming language, which is majorly used for data manipulation. It has libraries and support for almost all different utilities that are important. One of the important things that are required while programming is real-time date and time status and Scala has a solution for that too. This tutorial on check current date and time in Scala walks you through the method to create Scala variables that hold date and time stamps.

Scala是通用编程语言,主要用于数据处理。 它具有库和对几乎所有重要的不同实用程序的支持。 编程时所需的重要内容之一是实时日期和时间状态 ,Scala也提供了解决方案。 本教程介绍了如何在Scala中检查当前日期和时间,并逐步引导您创建包含日期和时间戳的Scala变量。

使用日历类获取Scala中的当前日期和时间 (Getting current Date and Time in Scala using calendar class)

Getting current date and time in Scala is very simple and you can do this using the classical java 'calendar' class.

在Scala中获取当前日期和时间非常简单,您可以使用经典的java'calendar'类来实现

This class can be imported using the statement: "java.util.Calendar". The calendar class in java is an abstract class that is used to get the current date and time. The same class is used in Scala too, we can get the current date and time using it. There is a field in this class that stores the current date and time.

可以使用以下语句导入此类: “ java.util.Calendar” 。 java中的calendar类是一个抽象类,用于获取当前日期和时间 。 Scala中也使用了相同的类,我们可以使用它来获取当前日期和时间 。 此类中的一个字段用于存储当前日期和时间

Program to get time using getInstance() method

程序使用getInstance()方法获取时间

import java.util.Calendar;
object MyClass {
def main(args: Array[String]) {
var dT = Calendar.getInstance()
var currentMinute = dT.get(Calendar.MINUTE)
var currentHour = dT.get(Calendar.HOUR_OF_DAY)
if(currentHour > 12){
currentHour %= 12
println("Current time is "+currentHour+":"+currentMinute+" PM")
}
else{
println("Current time is "+currentHour+":"+currentMinute+" AM")  
}
}
}

Output

输出量

Current time is 7:50 PM

Code logic

代码逻辑

In this program, we have used the getInstance() method of the Calendar class. This method is used to find the date and time in java, the same method is used in Scala also, We have passed the variables calendar.MINUTE and calendar.HOUR_OF_DAY, and stored the result of the methods in variables currentMinute and currentHour respectively. The values returned from the functions are stored in the variables, The method gets (Calendar.HOUR_OF_DAY) returns the current hour in 24-hour format. To convert this into 12-hour format we will use a conditional statement that checks for AM or PM.

在此程序中,我们使用了Calendar类的getInstance()方法。 该方法用于在Java中查找日期和时间,Scala中也使用相同的方法,我们已传递了变量calendar.MINUTE和calendar.HOUR_OF_DAY ,并将方法的结果分别存储在变量currentMinute和currentHour中 。 从函数返回的值存储在变量中,方法get( Calendar.HOUR_OF_DAY )以24小时格式返回当前小时。 要将其转换为12小时格式,我们将使用条件语句检查AM或PM。

Program to get full date and time in Scala using Calendar Class

程序使用日历类获取Scala中的完整日期和时间

import java.util.Calendar;
object MyClass {
def main(args: Array[String]) {
var dT = Calendar.getInstance()
var currentHour = dT.getTime()
println("Current data and time is "+currentHour)    
}
}

Output

输出量

Current data and time is Tue Jul 16 19:54:59 UTC 2019

Code logic

代码逻辑

This code uses the getTime() method that returns the current date and time in the format day MM DD time UTC YYYY. This is also an inbuilt method of the class calendar.

此代码使用getTime()方法 ,该方法day MM DD time UTC YYYY的格式返回当前日期和时间 。 这也是类日历的内置方法。

You can also get the exact date and time of your current time based on UTC. Some methods help you get year, day, minute, the second also. You can get all this using the get() method of the Calendar class. Passing different parameters can get you different results. These are,

您还可以根据UTC获取当前时间的确切日期和时间 。 有些方法可以帮助您获得年,日,分钟,秒。 您可以使用Calendar类的get()方法获得所有这些信息。 传递不同的参数可以获得不同的结果。 这些是,

  • get(object.YEAR)

    get(object.YEAR)

  • get(object.DATE)

    get(object.DATE)

  • get(object.MINUTE)

    get(object.MINUTE)

  • get(object.SECOND)

    get(object.SECOND)

Program to find year, date, minute and second using get() method in Scala

程序在Scala中使用get()方法查找年,日期,分钟和秒

import java.util.Calendar;
object MyClass {
def main(args: Array[String]) {
var dT = Calendar.getInstance();
println("Current Calendar's Year: " + dT.get(Calendar.YEAR)); 
println("Current Calendar's Day: " + dT.get(Calendar.DATE)); 
println("Current MINUTE: " + dT.get(Calendar.MINUTE)); 
println("Current SECOND: " + dT.get(Calendar.SECOND));  
}
}

Output

输出量

Current Calendar's Year: 2019
Current Calendar's Day: 16
Current MINUTE: 0
Current SECOND: 5

使用java.time.localDate.Now获取日期 (Get Date using java.time.localDate.Now)

This java method is available in Scala, you can get the current date using this method.

Scala中提供了此java方法,您可以使用此方法获取当前日期

Program to get DATE in Scala

计划在Scala中获取DATE

import java.util.Calendar;
object MyClass {
def main(args: Array[String]) {
println(java.time.LocalDate.now)
}
}

Output

输出量

2019-07-16

使用SimpleDateFormat类获取日期 (Get Date using SimpleDateFormat class)

This java class is also used in Scala to get current date. This class is used in Scala to get a date. This method is used with the scala calendar class to format the date into a specific form of our choice.

Scala中也使用此java类来获取当前日期 。 该类在Scala中用于获取日期。 此方法与scala日历类一起使用,以将日期格式化为我们选择的特定形式。

This class can be used by using the import statement: java.text.SimpleDateFormat. This imports these Java classes in Scala

可以通过使用import语句使用该类: java.text.SimpleDateFormat 。 这会将这些Java类导入Scala中

Program to get date using simpleDateFormat in Scala

程序在Scala中使用simpleDateFormat获取日期

import java.util.Calendar;
import java.text.SimpleDateFormat;
object MyClass {
def main(args: Array[String]) {
val form = new SimpleDateFormat("dd / MM / yy"); 
val c = Calendar.getInstance(); 
println("Present Date : " + c.getTime()); 
val formattedDate = form.format(c.getTime()); 
println("Date formatted : "+formattedDate); 
}
}

Output

输出量

Present Date : Tue Jul 16 20:07:22 UTC 2019
Date formatted : 16 / 07 / 19

使用SimpleDateFormat类获取时间 (Get Time using SimpleDateFormat class)

You can get the current time using the hour formatting over the calendar method variable.

您可以使用日历方法变量中的小时格式来获取当前时间

  • "HH" for getting hour in 24 hour format

    “ HH”以24小时制显示小时

  • "hh" for getting hour in 12 hour format

    “ hh”以12小时格式获取小时

  • "MM/mm" for getting Minutes

    “ MM / mm”用于获取分钟

  • "ss" for getting seconds

    “ ss”获得秒

  • "a" for getting am or pm

    “ a”表示上午或下午

Program to get current time using SimpleDateFormat class

程序使用SimpleDateFormat类获取当前时间

import java.util.Calendar;
import java.text.SimpleDateFormat;
object MyClass {
def main(args: Array[String]) {
val c = Calendar.getInstance(); 
val hr24 = new SimpleDateFormat("HH"); 
val formhr24 = hr24.format(c.getTime());
val hr12 = new SimpleDateFormat("hh"); 
val formhr12 = hr12.format(c.getTime()); 
val min = new SimpleDateFormat("mm"); 
val formmin = min.format(c.getTime()); 
val sec = new SimpleDateFormat("ss"); 
val formsec = sec.format(c.getTime()); 
val a_p = new SimpleDateFormat("a"); 
val forma_p = a_p.format(c.getTime()); 
println("Time in 24 hour format "+formhr24+" : "+formmin+" : "+formsec)
println("Time in 24 hour format "+formhr12+" : "+formmin+" : "+formsec+" "+forma_p)
}
}

Output

输出量

Time in 24 hour format 20 : 12 : 18
Time in 24 hour format 08 : 12 : 18 PM

The Java functions calendar() and SimpleDateFormat() are valid in Scala also. As in the above programs - you can see that the methods of these classes that are imported from Java are so powerful that they can manipulate all the date endtime functionalities that are inbuilt in the compiler. You can check ok dates in any format. Using this you can also see which calendar the compiler is using and the time that is being used by the compiler. Generally, the compiler uses UTC and Georgian calendar.

Java函数calendar()和SimpleDateFormat()在Scala中也有效。 就像上面的程序一样,您可以看到从Java导入的这些类的方法是如此强大,以至于它们可以操纵编译器中内置的所有日期结束时间功能。 您可以以任何格式检查确定日期。 使用此功能,您还可以查看编译器正在使用哪个日历以及编译器正在使用的时间。 通常,编译器使用UTC和格鲁吉亚日历。

翻译自: https://www.includehelp.com/scala/how-to-check-current-date-and-time-in-scala.aspx

scala 当前日期

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

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

相关文章

计算机科学考试大纲,计算机科学与技术考试大纲.doc

计算机科学与技术考试大纲计算机科学与技术专业本专业的专业课程考试为“计算机软件基础”和“计算机硬件基础”两门课程的组合试卷,卷面总分200分,时间150分钟,考试方式为笔试。考试可携带计数器,但禁止携带文曲星、商务通等带有…

eclipse中项目内存溢出问题

2019独角兽企业重金招聘Python工程师标准>>> SpringBoot项目热启动Perm区内存溢出。 Failed to instantiate [org.springframework.orm.jpa.JpaVendorAdapter]: Factory method jpaVendorAdapter threw exception; nested exception is java.lang.OutOfMemoryErro…

云盾idaas登陆_移动端扫码登录IDaaS平台

{"moduleinfo":{"card_count":[{"count_phone":1,"count":1}],"search_count":[{"count_phone":10,"count":10}]},"card":[{"des":"刷脸门禁通行系统前端接入人脸AI赋能的人脸…

express rest_Express / Node中用于REST API的邮递员工具

express restWhen dealing with routes (like in express), we may use any of the REST verbs and at times, the browser is limited to facilitate testing the routes/REST API. 在处理路由时(如快速表达),我们可以使用任何REST动词,有时浏览器会受到…

我们在使用计算机时,不能做什么?,11秋季学期计算机应用技术基础学习周期_01任务-在线作业[1]1...

1.选购显示器应优先考虑显示器的( B )性能指标选A.显示器的防辐射指标B. 显示器的带宽C. 显示器的刷新率D. 显示器的尺寸2. 一个声音文件采用双声道8位采样精度、22K采样频率录音,它的大小是5M,如果采用单声道16位采样精度、44K采样频率录音,…

按一个按钮会随机死人_《饥荒》那些年坑爹的随机地图,最后一个简直笑死人...

饥荒是一款随机性很强的游戏,这也是饥荒这款游戏相当耐玩的主要原因。别的不说小编敢保证随机开图的话你绝对找不到两张一模一样的地图。地图上的资源也会大不相同。不管是稀有的各种奇遇还是基础资源的刷新数量都是完全不同的。当然对于一些基础资源玩家们并没有多…

介词at_介词逻辑| 离散数学

介词at介词或陈述 (Preposition or Statement) A preposition is a definition sentence which is true or false but not both. 介词是一个定义语句,它是对还是错,但不能同时包含两者。 For example: The following 8 sentences, 例如:以下…

职称计算机提前考试试卷,职称计算机考试多项选择考试卷模拟考^试题

《职称计算机考试多项选择考试卷模拟考^试题》由会员分享,可在线阅读,更多相关《职称计算机考试多项选择考试卷模拟考^试题(8页珍藏版)》请在人人文库网上搜索。1、姓名:________________ 班级:________________ 学号:…

形象易懂讲解算法I——小波变换

https://zhuanlan.zhihu.com/p/22450818?referdong5 最早发于回答:能不能通俗的讲解下傅立叶分析和小波分析之间的关系? - 咚懂咚懂咚的回答现收入专栏。从傅里叶变换到小波变换,并不是一个完全抽象的东西,可以讲得很形象。小波变…

r语言安装ipsolve_R语言矩阵操作之矩阵运算

1.转置运算对于矩阵A,函数t(A)表示矩阵A的转置,如:> Amatrix(1:6,nrow2);> A;[,1] [,2] [,3][1,] 1 3 5[2,] 2 4 6> t(A);[,1] [,2][1,] 1 2[2,] 3 4[3,] 5 62.求方阵的行列式函数det()是求矩阵…

使用Linux命令行归档文件

存档文件 (Archiving Files) As we already understand what Compression (Compression techniques in Linux) is? We shall learn about Archives. We prefer compression as it is convenient to send file compressed through a network but sometimes it is not a smart w…

http缓存机制之304状态码

在网上看到一篇关于解释浏览器缓存更新机制304状态码的文章,里面说如果请求头中的If-Modified-Since字段和If-None-Match字段的值分别和响应头中的Last-Modified字段和Etag字段值一致,服务器就会返回304状态码(无响应体),浏览器就从本地读取缓…

东北大学 计算机技术导师,报考东北大学 计算机技术 329分 求调剂相关专业

自荐类型:硕士自荐报考院校:东北大学报考专业:(专业硕士)计算机技术[085211]本科院校:沈阳工程学院本科专业:计算机科学与技术初试成绩:总分:329政治:69 英语:71 …

c语言i++和++i程序_使用C ++程序修改链接列表的内容

c语言i和i程序Problem statement: 问题陈述: Given a linked list, you modified that linked list in such a way that the elements of the first half of that linked list are the difference of the first node to the last node and next node is the differ…

原生js设置div隐藏或者显示_10种JS控制DIV的显示隐藏代码

div隐藏与显示#menus {background-color: #c4cff0;}function Layer_HideOrShow(cur_div){ var currentdocument.getElementById(cur_div);if(current.style.visibility"hidden"){current.style.visibility "visible";}else{current.style.visibility "…

计算机工作对身体有害吗,在电脑前长时间工作会对身体有害处吗?

病情分析:目前,电脑对人体生理和心理方面的负面影响已日益受到人们的重视.为此科学使用电脑,减少电脑和网络的危害是十分必要的.指导意见:一是要增强自我保健意识工作间隙注意适当休息,一般来说,电脑操作人员在连续工作1小时后应该休息10分钟左右.并且最…

Java LinkedList getFirst()方法与示例

LinkedList getFirst()方法 (LinkedList getFirst() method) This method is available in package java.util.LinkedList. 软件包java.util.LinkedList中提供了此方法。 This method is used to return the first or initial or beginning element of the linked list. 此方法…

C++第15周(春)项目2 - 用文件保存的学生名单

课程首页在:http://blog.csdn.net/sxhelijian/article/details/11890759。内有完整教学方案及资源链接本程序中须要的相关文件。请到http://pan.baidu.com/s/1qW59HTi下载。【项目2-用文件保存的学生名单】  文件score.dat中保存的是若干名学生的姓名和C课、高数和…

计算机选配 注意事项,选择鼠标注意事项有哪些

选择鼠标注意事项有哪些每台电脑旁边都有了一个忠实的伴侣,那就是“Mouse”--鼠标。选择鼠标最重要的一点就是质量,无论它的功能有多强大、外形多漂亮,如果质量不好那么一切都不用考虑了。那么,选择鼠标注意事项有哪些?笔记本鼠标…

js 验证护照_护照本地策略第2部分| Node.js

js 验证护照In my last article (Passport local strategy section 1 | Node.js), we started the implementation of the passport-local authentication strategy. We also looked at the various requirements to get started with the login form. In this article, we wil…