说来惭愧,Java8发布五六年了,最近刚刚接触到Optional。 Optional 类主要解决的问题是臭名昭著的空指针异常(NullPointerException) —— 每个 Java 程序员都非常了解的异常。 本质上,这是一个包含有可选值的包装类,这意味着 Optional 类既可以含有对象 ...
分类:
编程语言 时间:
2020-09-18 12:07:23
阅读次数:
54
需求: 某个活动需按周或按日重复 1. A活动从 2020-01-01 ~ 2020-05-01 日期间可每天重复参与 2.A活动在 2020-01-01 ~ 2020-05-01 日期间内每 星期一,星期三, 星期日才可参与 实现: 数据记录: begin_date (开始时间) end_date ...
分类:
其他好文 时间:
2020-09-18 03:02:24
阅读次数:
38
环境说明:win10 + java11 + springboot 2.0.6 + spring cloud Finchley.SR2 问题原因:Java9+版本以后,JAXB默认没有加载 解决办法:手动添加jaxb模块 <dependency> <groupId>javax.xml.bind</gr ...
分类:
编程语言 时间:
2020-09-10 22:34:19
阅读次数:
72
CMake Error at /home/sany/WorkSpace/test_ws/devel/share/A/cmake/AConfig.cmake:173 (message): Project 'B' tried to find library 'A'. The library is nei ...
分类:
其他好文 时间:
2020-09-04 17:37:01
阅读次数:
82
https://www.cisco.com/c/en/us/td/docs/ios-xml/ios/iproute_bgp/configuration/xe-16/irg-xe-16-book/irg-xe-16-book_chapter_01010101.html Carrying Link-St ...
分类:
其他好文 时间:
2020-08-26 19:00:58
阅读次数:
54
Optional of 与 ofNullable 的区别 /** * Returns an {@code Optional} with the specified present non-null value. * * @param <T> the class of the value * @par ...
分类:
其他好文 时间:
2020-07-30 14:39:39
阅读次数:
64
Suppose Andy and Doris want to choose a restaurant for dinner, and they both have a list of favorite restaurants represented by strings. You need to h ...
分类:
其他好文 时间:
2020-07-29 15:41:09
阅读次数:
86
原因一:找到错误点,增加以下语句: with torch.no_grad(): outputs = Net_(inputs) 错误代码的位置。 原因二:GPU没有选对 os.environ["CUDA_VISIBLE_DEVICES"] = "0, 2, 3" 查看性能,发现nVidia的只有GPU ...
分类:
其他好文 时间:
2020-07-26 22:55:56
阅读次数:
297
教程 Flutter瀑布流及通用列表解决方案 Canonical 在 Linux 上提供 Flutter 桌面应用支持 插件 koukicons-flutter 🍪 Colorful Icons for your Flutter App fontify Converts SVG icons to ...
分类:
其他好文 时间:
2020-07-24 15:29:24
阅读次数:
77
yum模块 name 必选 指定安装包名 state 执行命令 present installed removed latest absent 其中installed and present等效 latest标志安装yum中最新版本,absent and removed 等效 表示删除安装包 dis ...
分类:
其他好文 时间:
2020-07-23 16:32:49
阅读次数:
80