码迷,mamicode.com
首页 >  
搜索关键字:ora-00020 maximum number of processes    ( 31512个结果
Redis部分介绍
Redis介绍 Redis 是完全开源的,遵守 BSD 协议,是一个高性能的 key-value 数据库。 性能极高 – Redis能读的速度是110000次/s,写的速度是81000次/s 。 丰富的数据类型 – Redis支持二进制案例的 Strings, Lists, Hashes, Sets ...
分类:其他好文   时间:2021-04-28 12:18:30    阅读次数:0
JS—typeof、基本数据类型、数学函数——第三天
一、typeof 检测出来的数据类型 --> 基本数据类型 string number boolean null undefined --> 变量初始化了,但是没有赋值 --> 函数没有传实参,那么形参是undefined --> 函数没有返回值,那么函数调用完的地方是undefined --> 复 ...
分类:Web程序   时间:2021-04-28 12:17:27    阅读次数:0
react 输入框 输入大于等于0,最多两位小数
//多个输入框的情况 if (Number(value) <= Number(se.fullCredit)) { value = value.replace(/[^\d.]/g, '') //清除“数字”和“.”以外的字符 value = value.replace(/^\./g, '') //验证 ...
分类:其他好文   时间:2021-04-28 11:44:32    阅读次数:0
常用工作命令集合
1. find . -regex '.*\.c\|.*\.cc' | xargs grep "string" --color --line-number 2. sed -n '5,10p' filename 查看文件的第5行到第10行。 3. grep -o hello test.log | wc ...
分类:其他好文   时间:2021-04-27 15:16:42    阅读次数:0
typescript 数组类型的定义
简单的定义 const numArr:number[]=[1,2,3] const strArr:string[]=['a','b','c'] const undeArr:undefined[]=[undefined,undefined] 数组中有字符串又有数组的类型 const arr:(numb ...
分类:编程语言   时间:2021-04-27 14:24:27    阅读次数:0
iview表单数字验证
minChargeMoney: [ { required: true, message: "此项必填", trigger: "blur", type:"number", transform(value) { return Number(value); } }, ], ...
分类:其他好文   时间:2021-04-26 13:19:44    阅读次数:0
Leetcode/数学/计数质数
质数的算法: 1,判断n是否能被2~n-1整除 输入的数n不能被2-(n-1)整除,说明是素数 输入的数n能被2-(n-1)整除,说明不是素数 #include<stdio.h> int main() { int i, n; bool i; printf("please input a number ...
分类:其他好文   时间:2021-04-26 13:14:06    阅读次数:0
后缀数组
后缀数组构造方法: 1.倍增 直接参考刘汝佳蓝书 时间复杂度不优秀,但代码实现简单,细节处理较多,建议参考思路后背过代码。 #include<iostream> #include<cstdio> #include<cmath> #include<algorithm> #include<cstring ...
分类:编程语言   时间:2021-04-24 13:23:55    阅读次数:0
Python的文本和字节序列
一、字符串的表示和存储 字符串是字符的序列,每个字符都有有一个数字作为标识,同时会有一个将标识转换为存储字节的编码方案; s = 'hello world python' for c in s: print(c, end=' ') h e l l o w o r l d p y t h o n AC ...
分类:编程语言   时间:2021-04-23 12:20:35    阅读次数:0
Spring(11) - Introductions进行类扩展方法
Introductions(引用),在 Aspect 中称为类型间的声明,使切面能够声明被通知的对象(拦截的对象)实现给定的接口,并提供该接口的实现。 简单点说可以将一个类的实现方法复制到未实现的类中。 通过 @DeclareParents 注解进行声明,声明在一个父类型的属性上(比如接口),其中注 ...
分类:编程语言   时间:2021-04-23 12:12:26    阅读次数:0
31512条   上一页 1 ... 11 12 13 14 15 ... 3152 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!