低版本mybatis <foreach collection="mapInfo.entrySet()" item="item" index="index" separator=","> ${item.key} = VALUES ( #{item.value} ) </foreach> 高版本 <fo ...
分类:
其他好文 时间:
2021-06-11 19:06:24
阅读次数:
0
1.阿里js文件路径 <script src="http://g.tbcdn.cn/mtb/lib-flexible/0.3.4/??flexible_css.js,flexible.js"></script> 2.文件dom <!DOCTYPE html> <html lang="en"> <he ...
分类:
移动开发 时间:
2021-06-11 19:05:55
阅读次数:
0
leetcode链接 题目 给定一个 n × n 的二维矩阵 matrix 表示一个图像。请你将图像顺时针旋转 90 度。 你必须在 原地 旋转图像,这意味着你需要直接修改输入的二维矩阵。请不要 使用另一个矩阵来旋转图像。 代码 class Solution { public: void rotat ...
分类:
其他好文 时间:
2021-06-11 18:46:36
阅读次数:
0
1.System类 l System类代表系统,系统级的很多属性和控制方法都放置在该类的内部。该类位于java.lang包。 l 由于该类的构造器是private的,所以无法创建该类的对象,也就是无法实例化该类。其内部的成员变量和成员方法都是static的,所以也可以很方便的进行调用。 l 方法: ...
分类:
其他好文 时间:
2021-06-11 17:34:26
阅读次数:
0
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi ...
分类:
其他好文 时间:
2021-06-10 18:39:18
阅读次数:
0
三剑客 sed 流编辑器 选项 sed -n 取消命令的默认输出 sed -i 修改文件内容 备份-i.bak sed -e 允许多次编辑 sed -r 支持扩展正则表达式 sed -p 打印输出(与n配合) sed -n '2,3p' 取文件2到3行 sed -n '3p' 第3行 sed -n ...
分类:
系统相关 时间:
2021-06-10 17:46:37
阅读次数:
0
<style lang="scss" scoped> /*取消tab页click蓝色下标线*/ .el-tabs__active-bar { background-color: transparent !important; } /*解决 elementUI 切换tab后 el_table 固定列下 ...
分类:
其他好文 时间:
2021-06-10 17:44:25
阅读次数:
0
简介 思路: 个数和序号相等 code class Solution { int size = 0; int maxCode = 0; public boolean isCompleteTree(TreeNode root) { if(root == null) return true; recur ...
分类:
其他好文 时间:
2021-06-10 17:38:44
阅读次数:
0
Python3 1. 命令行快速搭建本地http服务器 python3 -m http.server 8000 在命令行中输入此命令,就会在当前目录下搭建http服务器,可以通过访问http://localhost:8000/查看, 这样就可以用同一网段的设备从这个http服务器下载文件 ...
分类:
编程语言 时间:
2021-06-09 10:40:33
阅读次数:
0
java文件中包含3700行 /** * Returns the {@code Class} object associated with the class or * interface with the given string name. Invoking this method is * e ...
分类:
编程语言 时间:
2021-06-09 10:31:41
阅读次数:
0