/** * 通用导出 * array $data 导出数据 * array $indexKey 导出数据键 * array $headArr 表头 * string $title 生成文件名 * * 必须保持 $indexKey 和 $headArr 顺序对应才能保证导出数据准确 */ functi ...
分类:
Web程序 时间:
2020-09-04 17:36:45
阅读次数:
67
class Solution { List<Integer> temp = new ArrayList<Integer>(); List<List<Integer>> ans = new ArrayList<List<Integer>>(); public List<List<Integer>> f ...
分类:
其他好文 时间:
2020-09-03 16:59:05
阅读次数:
46
undefinded 未定义,或者未声明,或者变量被声明后,但未被赋值 null 为空,表示无值 number string boolean array object 注意: ‘’空串属于字符串String,不是null 注意:如果判断获取的input标签是否有内容,应该是用””(空串来进行判断,而 ...
分类:
编程语言 时间:
2020-09-03 16:50:07
阅读次数:
48
BASE64压缩与解压 /** * 字符串的压缩 * * @param base64 待压缩的字符串 * * @return 返回压缩后的字符串 * * @throws IOException */ public static String zipBase64(String base64) thro ...
分类:
其他好文 时间:
2020-09-03 16:39:55
阅读次数:
80
bean 标签解析的第一步:解析 BeanDefinition 的大致过程 ...
分类:
编程语言 时间:
2020-09-03 16:36:56
阅读次数:
35
1.数组基础 ① 数组概念 array是按照一定顺序排列的一组值,每个值都拥有一个编号,编号从0开始从左向右依次增加 数组中的元素可以是任何类型的数据,元素之间用逗号分隔,整个数组由方括号([…])包裹 ② 数组本质 本质上,数组是对象类型的一种特殊表现形式, 因此,可以使用 new方式创建数组 示 ...
分类:
编程语言 时间:
2020-09-02 16:47:08
阅读次数:
52
Java Unsafe 测试代码 import com.User; import org.junit.Before; import org.junit.Test; import sun.misc.Unsafe; import java.lang.reflect.Field; import java. ...
分类:
编程语言 时间:
2020-08-28 15:05:16
阅读次数:
64
论文阅读——Super SloMo: High Quality Estimation of Multiple Intermediate Frames for Video Interpolation 原文地址:https://openaccess.thecvf.com/content_cvpr_201 ...
分类:
其他好文 时间:
2020-08-28 14:44:38
阅读次数:
60
转自: https://github.com/TWKB/Specification/blob/master/twkb.md"Tiny Well-known Binary" or "TWKB"VersionRelease0.23May 1, 2015AbstractTWKB is a multi-pu... ...
分类:
其他好文 时间:
2020-08-28 14:43:00
阅读次数:
56
C# 索引器(Indexer) 索引器(Indexer) 允许一个对象可以像数组一样被索引。当您为类定义一个索引器时,该类的行为就会像一个 虚拟数组(virtual array) 一样。您可以使用数组访问运算符([ ])来访问该类的实例。 语法 一维索引器的语法如下: element-type th ...