鼠标+ALT完成列选择 列选择扩展(选定某一行) 文章引用来源 https://tahoeninjas.blog/2019/03/30/multi-cursor-editing-in-visual-studio-code/ ...
分类:
其他好文 时间:
2020-12-18 12:21:50
阅读次数:
3
{ checkbox: true, visible: true, formatter: function (value, row, index) { if(row.isCheck =="1"){ return {disabled : true,} }else{ return {disabled : ...
分类:
其他好文 时间:
2020-12-17 12:54:44
阅读次数:
3
1、带lob字段的表,insert和delete的情况下,lob segment会不会产生HWM的问题?(会,在delete以后out of row的lob segment也不会自动收缩)2、在move表的时候,对lob字段是否会有影响? 例如lob索引会出现问题。(不会,无论in row还是out ...
分类:
其他好文 时间:
2020-12-15 12:42:18
阅读次数:
4
1、.wxml <view class="modal-mask" catchtouchmove="preventTouchMove" v-if="showModal"></view> <view class="modal-dialog" v-if="showModal"> <view class=" ...
分类:
微信 时间:
2020-12-15 11:59:37
阅读次数:
4
一、Java包括三大块: JavaSE(Java标准版)、JavaEE(Java企业版)、JavaME(Java微型版);其中JavaSE是基础。 二、Java语言特性【开源、免费】: 简单性: 相对而言。例如:Java中不再支持多继承,C++支持多继承;Java屏蔽了指针的概念,C++中有指针。 ...
分类:
编程语言 时间:
2020-12-15 11:40:24
阅读次数:
4
Codeforces Global Round #12 link C. Errich-Tac-Toe 考虑对所有格子按 \((i + j)\bmod 3\) 分类。 选取两个类,一类中 O 全部变成 X,一类中 X 全部变成 O。 考虑连续的三个棋子,必定被包含在 $3$ 个类中,且不会出现连续的 ...
分类:
其他好文 时间:
2020-12-14 13:49:47
阅读次数:
6
ST表的功能很简单 它是解决RMQ问题(区间最值问题)的一种强有力的工具 它可以做到O(nlogn)预处理,O(1)查询最值 ST表是利用的是倍增的思想 拿最大值来说 我们用Max[i][j]表示,从i位置开始的2j个数中的最大值,例如Max[i][1]表示的是ii位置和i+1位置中两个数的最大值 ...
分类:
其他好文 时间:
2020-12-14 13:48:47
阅读次数:
3
用python实现excel中查找指定字符的行信息 strr # 字符串 or 字符 filename # 文件名路径 with open(filename,'r') as fp: for line in fp: if strr in line: print (line.rows) 将会输出exce ...
分类:
编程语言 时间:
2020-12-11 12:33:36
阅读次数:
21
erminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Application tried to present modally an active controller <ViewControl ...
分类:
移动开发 时间:
2020-12-11 11:54:40
阅读次数:
12
Description A frightful matrix is a square matrix of order n where the first row and the first column are explicitly specified, while the other elemen ...
分类:
其他好文 时间:
2020-12-11 11:54:24
阅读次数:
4