gpt4 book ai didi

java - 从 Java 日期中添加/减去 5 秒 - 显示已弃用的警告

转载 作者:行者123 更新时间:2023-12-01 06:32:17 25 4
gpt4 key购买 nike

我想在当前时间上添加 5 秒

    Date date = new Date();

date.setSeconds(date.getSeconds()+ 5);
System.out.println("old Value is: "+date);
System.out.println("New Value is: "+ date);

它生成了我所需要的正确输出:

Old Value is: Thu Apr 17 14:10:33 PKT 2014
New Value is: Thu Apr 17 14:10:38 PKT 2014

但它给了我一条警告错误消息

Multiple markers at this line
- The method getSeconds() from the type Date is deprecated
- The method setSeconds(int) from the type Date is
deprecated

这意味着什么。忽略此警告是否安全?如果不是那么如何处理?

最佳答案

您可以使用date.setTime(date.getTime() + 5000)

关于java - 从 Java 日期中添加/减去 5 秒 - 显示已弃用的警告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23129212/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com