最新 最热

面试官问:select......for update会锁表还是锁行?

select查询语句是不会加锁的,但是select .......for update除了有查询的作用外,还会加锁呢,而且它是悲观锁。

2021-11-02
0

Leetcode|分割|131. 分割回文串(组合first索引)

做这类题之前不要慌,也不要直接上手code,先把简例决策树的图画出来,然后一气呵成写代码基本就能一次AC

2021-09-18
1

声音,无限可能

Seeing Voices and Hearing Faces: Cross-modal biometric matching

2021-09-18
1

抛弃繁杂的if判断,使用它试一试!

近日在公司领到一个小需求,需要对之前已有的试用用户申请规则进行拓展。我们的场景大概如下所示:

2021-09-15
0

[Go] go语言gin框架验证post传递json数据

gin框架有获取并验证post的数据的功能可以参考下面这段代码,兼容form数据和json数据type RegisterForm struct { Username string `form:"username" json:"username" uri:"username" xml:"username"......

2021-09-08
1

[Go] go语言gin框架封装返回的错误码类

当需要接口返回错误信息的时候尽量不要硬编码在接口返回对方可以封装一个错误码类类似下面这样演示types/api_code.gopackage typestype Codes struct { SUCCESS uint FAILED uint CnMessage map[......

2021-09-08
1

Cannot resolve symbol ‘istio‘ when I switch branch of source code to 2.0.0

问题描述Cannot resolve symbol 'istio' when I switch branch of source code to 2.0.0

2021-08-30
1

Java生成条形码code128

生成code 128条形码工具类maven依赖 net.sf.barcode4j barcode4j 2.1gradle依赖compile("net.sf.barcode4j:barcode4j:2.1")工具代码:import org.apache.commons.lang.Obje...

2021-08-27
1

LeetCode 0352 - Data Stream as Disjoint Intervals

Given a data stream input of non-negative integers a1, a2, …, an, …, summarize the numbers seen so far as a list of disjoint intervals.

2021-08-11
1