Java 支持三种注释方式。前两种分别是 // 和 /* */,第三种被称作说明注释,它以 /** 开始,以 */结束。 说明注释允许你在程序中嵌入关于程序的信息。你可以使用 javadoc 工具软件来生成信息,并输出到HTML文件中。 说明注释,使你更加方便的记录你的程序信息。 javadoc 标 ...
分类:
编程语言 时间:
2020-05-28 16:22:53
阅读次数:
54
恢复内容开始 现象: 使用Eclipse提交git代码,报错信息如下: Can't connect to any repository: https://github.com/InterFF/abc.git (https://github.com/InterFF/abc.git: authentic ...
分类:
系统相关 时间:
2020-05-28 12:56:33
阅读次数:
278
Apache Parquet is a columnar storage format available to any project in the Hadoop ecosystem, regardless of the choice of data processing framework, d ...
分类:
其他好文 时间:
2020-05-27 15:57:13
阅读次数:
104
1. 前言 我们知道,在spring中,一般的实现ImportSelector接口,然后重写selectImports方法,就可以使用到spring的SPI技术,加载spring.factories中配置的org.springframework.boot.autoconfigure.EnableAu ...
分类:
其他好文 时间:
2020-05-27 11:47:24
阅读次数:
57
akka 2.6.x正式发布以来已经有好一段时间了。核心变化是typed-actor的正式启用,当然persistence,cluster等模块也有较大变化。一开始从名称估摸就是把传统any类型的消息改成强类型消息,所以想拖一段时间看看到底能对我们现有基于akka-classic的应用软件有什么深层 ...
分类:
其他好文 时间:
2020-05-26 22:21:19
阅读次数:
92
写了一个if 条件判断,就单纯的想判断变量空或者非空的时候做一些事情。 但是执行以后当为非空的时候一直报出这个错误-->line 6: [: too many arguments 起初我以为,我语句表达写错,但是研究了半天,并没有语法错误。 if [ ! $res ]; then 于是乎查询了一番, ...
分类:
系统相关 时间:
2020-05-26 10:38:05
阅读次数:
133
3.6 泛型: 解决,类,接口,方法的复用性,以及对不特定数据类型的支持 3.6.1 泛型函数: 如果需要一个函数传入类型必须返回类型,同时满足,泛型可以解决。any类型放弃了类型检查。 function getData(value:any):any{ return 'hahaha'; // 修改了 ...
分类:
其他好文 时间:
2020-05-26 00:53:06
阅读次数:
56
imagePullPolicy Always 总是拉取 pull imagePullPolicy: Always IfNotPresent 默认值,本地有则使用本地镜像,不拉取 imagePullPolicy: IfNotPresent Never 只使用本地镜像,从不拉取 imagePullPol ...
分类:
其他好文 时间:
2020-05-25 15:27:21
阅读次数:
152
Car model and year: Porsche 996 Purpose: Reset airbag light I was taking out the seats for some nice Recaros and at one point did not have the seat be ...
分类:
其他好文 时间:
2020-05-25 12:36:43
阅读次数:
65
跑spark job的时候碰到了错误: 这是因为nmPrivate目录没有权限访问引起的。 参考: "https://www.oschina.net/question/2288283_2134188" ...
分类:
其他好文 时间:
2020-05-25 09:22:14
阅读次数:
74