一、背景 一般意义上而言,Java/Android中的引用类型包括强引用、软引用、弱引用、虚引用。不同的引用类型具有各自适用的应用场景,并与JVM的GC直接相关。 作为Java/Android中的引用类型之一,WeakReference被大量的使用到系统源码、基础工具甚至具体的业务逻辑中。在解决需要 ...
分类:
移动开发 时间:
2020-05-31 21:54:36
阅读次数:
110
Given two integers n and k, return all possible combinations of k numbers out of 1 ... n. Example: Input: n = 4, k = 2 Output: [ [2,4], [3,4], [2,3], ...
分类:
其他好文 时间:
2020-05-31 13:17:49
阅读次数:
57
SpringBoot深入理解 项目打包SpringBoot启动过程 当使用打包时,会下载org-springframework-boot-loader的jar,并且不会放在lib存放的第三方jar包文件中,该jar包中有个JarLauncher.class文件中设置了jar包运行时的入口和打包后文件 ...
分类:
编程语言 时间:
2020-05-30 01:34:45
阅读次数:
128
不管对于哪种服务,对于其优化,无非是从两个方面着手,第一个是对于硬件方面的优化,第二个是对系统以及服务本身的优化。1、查询连接MySQL服务器的次数mysql>showstatuslike‘connections‘;+---------------+-------+|Variable_name|Value+---------------+-------+|Connections|3+----
分类:
数据库 时间:
2020-05-29 19:21:47
阅读次数:
73
使用Visual Studio Code, 遇到这样的警告,看着不舒服,怎样才能解决掉这个警告呢?"owner": "python","code": "unbalanced-tuple-unpacking","severity": 8,"message": "Possible unbalanced ... ...
分类:
其他好文 时间:
2020-05-28 16:44:36
阅读次数:
119
参照《算法竞赛入门经典(第二版)》,这上面写得很清楚。 核心代码如下: 倒推十分巧妙。 ...
分类:
其他好文 时间:
2020-05-24 16:55:16
阅读次数:
46
"Least Cost Bracket Sequence" "CodeForces 3D " 题目描述 This is yet another problem on regular bracket sequences. A bracket sequence is called regular, if ...
分类:
其他好文 时间:
2020-05-17 19:09:17
阅读次数:
56
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ ...
分类:
其他好文 时间:
2020-05-16 18:52:21
阅读次数:
113
Description: Given a non-negative integer num represented as a string, remove k digits from the number so that the new number is the smallest possible ...
分类:
其他好文 时间:
2020-05-15 00:34:42
阅读次数:
86
缺失值、重复值的查看、删除、填充,使用dropna、fillna、interpolate函数处理缺失值,使用duplicated、drop_duplicates函数处理重复值,使用reset_index函数重置行索引 ...
分类:
其他好文 时间:
2020-05-12 18:34:36
阅读次数:
93