关键字和保留字 1. 标识符 标识(zhi)符:就是指开发人员为变量、属性、函数、参数取的名字。 标识符不能是关键字或保留字。 1. 关键字 关键字:是指 JS本身已经使用了的字,不能再用它们充当变量名、方法名。 包括:break、case、catch、continue、default、delete ...
分类:
其他好文 时间:
2020-09-17 16:56:30
阅读次数:
34
目录 前言 什么是动态SQL? 常用的标签 if choose、when、otherwise where foreach set sql include 总结 拓展一下 Mybatis中如何避免魔数? 如何引用其他XML中的SQL片段? 总结 前言 通过前两篇的文章我们了解了Mybatis基本的CR ...
分类:
数据库 时间:
2020-09-17 16:05:59
阅读次数:
37
in-page vacuum和HOT更新,两种技术都可以称为优化。它们很重要,但实际上并未包含在文档中。 在常规更新期间执行in-page vacuum 当因为读取或更新访问页面时,如果PostgreSQL知道该页面空间不足,则可以执行一次快速的in-page vacuum。发生在以下两种情况下: ...
分类:
数据库 时间:
2020-09-17 15:56:41
阅读次数:
32
题目:https://pintia.cn/problem-sets/1268384564738605056/problems/1278908289143574529 We have a network of computers and a list of bi-directional connect ...
分类:
其他好文 时间:
2020-09-17 15:44:44
阅读次数:
21
// 字典树的左儿子右兄弟法 // 相同长度则为 strlen(str)*2 + 2 不同则为 公共前缀 + 1 #include<bits/stdc++.h> #define rep(i, n) for(int i=0;i!=n;++i) #define per(i, n) for(int i=n ...
分类:
其他好文 时间:
2020-09-17 14:15:04
阅读次数:
28
最新教程下载:http://www.armbbs.cn/forum.php?mod=viewthread&tid=95243 第7章 RL-TCPnet网络协议栈移植(RTX5) 本章教程为大家讲解RL-TCPnet网络协议栈的RTX5版本移植方式。 7.1 初学者重要提示 7.2 移植RL-TCP ...
分类:
Web程序 时间:
2020-09-17 14:02:32
阅读次数:
34
1.基础 Switch> !一般用户模式 Switch# !特权模式 Switch(config)# !全局配置模式 Switch(config)#honstname S1 !更改交换机设备[h S1] S1(config)#exit !从当前模式返回到上一级模式 S1(config)#end !从 ...
分类:
其他好文 时间:
2020-09-17 12:38:04
阅读次数:
28
case when info.LEASE_WAY='OPERATING-LEASE' then '经租' when info.LEASE_WAY='BACK-LEASE' then '回租' when info.LEASE_WAY='LEASE' then '直租' else '一次性买断' end ...
分类:
数据库 时间:
2020-09-17 12:37:45
阅读次数:
34
We know that when we create a new UI5 control instance, we can explicitly pass an id into constructor. In this case, developer takes responsibility to ...
分类:
其他好文 时间:
2020-09-15 20:54:51
阅读次数:
29