https://leetcode-cn.com/problems/xor-queries-of-a-subarray/ 缓存一下 class Solution { public int[] xorQueries(int[] arr, int[][] queries) { int n = arr.le ...
分类:
其他好文 时间:
2021-05-24 06:48:05
阅读次数:
0
先执行如下命令: sudo apt install fcitx-bin sudo apt-get install fcitx-table 一、 二、 三、 四、 五、安装 sudo dpkg -i sogoupinyin_2.4.0.3469_amd64.deb 安装会出现如下错误: 在命令行执行 ...
分类:
其他好文 时间:
2021-05-24 06:46:44
阅读次数:
0
当使用mybatis plus3.2.0+springboot2.1.1 报错 Error attempting to get column from result set 1.一般出现这种问题,最简单的错误可能是因为数据库的字段类型和实体类的类型不一致 2.但我不是,我是因为在实体类里面使用了@b ...
分类:
其他好文 时间:
2021-05-24 06:44:36
阅读次数:
0
1 sudo apt-get update 更新源 2 sudo apt-get install package 安装包 3 sudo apt-get remove package 删除包 4 sudo apt-cache search package 搜索软件包 5 sudo apt-cache ...
分类:
其他好文 时间:
2021-05-24 06:42:21
阅读次数:
0
1.向JDBC读数据 object SparkSQL02_Datasource { def main(args: Array[String]): Unit = { //创建上下文环境配置对象 val conf: SparkConf = new SparkConf().setMaster("local ...
分类:
数据库 时间:
2021-05-24 05:59:48
阅读次数:
0
class LptControl { private string LptStr = "lpt1"; public LptControl(string l_LPT_Str) { LptStr = l_LPT_Str; } [StructLayout(LayoutKind.Sequential)] p ...
Thymeleaf官网: https://www.thymeleaf.org/ 一 、Thymeleaf是什么? Thymeleaf是一个流行的模板引擎,该模板引擎采用Java语言开发,模板引擎是一个技术名词,是跨领域跨平台的概念,在Java语言体系下有模板引擎,在C#、PHP语言体系下也有模板引擎 ...
分类:
其他好文 时间:
2021-05-24 05:36:05
阅读次数:
0
1.连接问题 Cannot get a connection, pool error Timeout waiting for idle object 解决: 排查思路: 1.检查是否应用压力过大,无法获取空闲连接 查看cpu、内存 查看tomcat的连接数(netstat -natp | grep ...
分类:
其他好文 时间:
2021-05-24 05:29:42
阅读次数:
0
#前言 #安装扩展 ##ClaudiIDE ##参考文档 https://www.cnblogs.com/FlyerBird/p/11748899.html> https://blog.csdn.net/qq_43085848/article/details/109923906 ...
分类:
其他好文 时间:
2021-05-24 05:27:48
阅读次数:
0
es6语法的map和set 一:Set集合 类似于数组,但是成员的值都是唯一的, Set本身是一个构造函数用来生成Set数据结构 Set集合的常用方法: add() 添加值,返回Set结构本身 const set = new Set() set.add(1) set.add(1) set.add(2 ...
分类:
其他好文 时间:
2021-05-24 05:17:47
阅读次数:
0