突然发现我的图解系统缺了「死锁」的内容,这就来补下。 在面试过程中,死锁也是高频的考点,因为如果线上环境真多发生了死锁,那真的出大事了。 这次,我们就来系统地聊聊死锁的问题。 死锁的概念; 模拟死锁问题的产生; 利用工具排查死锁问题; 避免死锁问题的发生; 死锁的概念 在多线程编程中,我们为了防止多 ...
分类:
其他好文 时间:
2021-04-01 13:39:38
阅读次数:
0
package com.demo.utils;import java.security.MessageDigest;/** * MD5加密类 * @author zys */public class MD5Utils { public final static String MD5(String s ...
分类:
其他好文 时间:
2021-04-01 13:36:02
阅读次数:
0
##Aware接口 在Spring中有许多的Aware接口,提供给应用开发者使用,通过Aware接口,我们可以通过set的方式拿到我们需要的bean对象(包括容器中提供的一些对象,ApplicationContext等),根据需要可以将其注入到本地对象的属性中。 先来看一个Spring两个基础的接口 ...
分类:
编程语言 时间:
2021-03-29 11:50:44
阅读次数:
0
项目使用的是ant-pro模板 有个可编辑表格的需求,效果图如下 ant-pro提供了EditableProTable 组件,我使用的是这种https://procomponents.ant.design/components/editable-table 不过这里展示的默认都是input输入框,我 ...
分类:
其他好文 时间:
2021-03-29 11:44:39
阅读次数:
0
#####为何使用zepto zepto主要适用于移动端,所以不用考虑低端浏览器的兼容性问题,因此相较于jQuery有很大的优势。 zepto分为很多模块,要使用哪个模块就需要导入哪个模块。 (https://www.css88.com//doc//zeptojs_api//) #####zepto ...
分类:
其他好文 时间:
2021-03-26 15:33:07
阅读次数:
0
1、重写commit,删除大文件 git filter-branch --force --index-filter "git rm -rf --cached --ignore-unmatch CPT_0707_ao/temp_past/temp2/deltap.csv" --prune-empty ...
分类:
Web程序 时间:
2021-03-26 15:31:53
阅读次数:
0
高斯消元 模板 luogu P3389 #include<bits/stdc++.h> using namespace std; const double eps=1e-6; const int N=100+5; double a[N][N]; int n; int gauss(){ int c,r ...
分类:
其他好文 时间:
2021-03-26 15:26:50
阅读次数:
0
方式一: #include<iostream> #include<opencv2/opencv.hpp> using namespace std; using namespace cv; int main() { //创建一个2*2 类型为8位的uchar类型三通道的 颜色为黄色 Mat img(2 ...
分类:
其他好文 时间:
2021-03-26 15:26:38
阅读次数:
0
结合DRF框架提供标准RESTful API接口 https://www.cnblogs.com/xiaonq/p/10053234.html restful说明 1、RESTful不是一种技术,而是一种接口规范,主要规范包括:1.请求方式、2.状态码、3、url规范、4、传参规范 2、RESTfu ...
分类:
其他好文 时间:
2021-03-26 15:25:35
阅读次数:
0
Function.prototype.mycall = function () { const [first, ...rest] = arguments; const ctx = first || window; ctx.func = this; const ret = ctx.func(...re ...
分类:
移动开发 时间:
2021-03-26 15:24:30
阅读次数:
0