Several ports (8005, 8080, 8009) required by Tomcat v7.0 Server at localhost are already in use. The server may already be running in another process, ...
分类:
其他好文 时间:
2020-06-16 14:41:14
阅读次数:
63
版本2.3.4: 在cocos中,自定义的类如果在构造函数里传参数,会有警告提示。 例如下面的类,在构造函数传入a,b参数 Test.ts const {ccclass, property} = cc._decorator; @ccclass export default class Test ex ...
分类:
其他好文 时间:
2020-06-15 22:51:02
阅读次数:
202
一、基础知识点 1、单引号双引号的区别:单引号不解释变量。 2、<< 的使用:这个的作用好像是与外面的指令交互的作用, #! /user/bin/bash # 用来对进入fdisk后的交互操作 fdisk /dev/sbd <<EOF n p 3 EOF #EOF代表的是括号 3、数学运算 1、ex ...
分类:
系统相关 时间:
2020-06-14 23:59:18
阅读次数:
119
Result Maps collection already contains value for com.zhaike.mapping.ChapterMapper.BaseResultMap Error creating bean with name 'courseController': Uns ...
分类:
其他好文 时间:
2020-06-13 21:43:13
阅读次数:
74
直接求解 LL factor(LL x){ LL cnt = 0; for(int i=1;i<=sqrt(x);i++){ if(x%i==0){ if(x/i == i) cnt += i; // ex: 9 = 3 * 3 else cnt += i + x/i; } } return cnt ...
分类:
其他好文 时间:
2020-06-13 21:08:25
阅读次数:
98
前端开发中, 做适配是少不了的, 这就用到了css中的各种长度单位, 做一下总结 在css中, 长度单位分为以下几种 绝对单位: px、in、cm、mm、pt、pc 百分比单位: vw、vh、vmin、vmax、% 相对单位: em、rem、ex、ch 各单位介绍 px 不用过多介绍, 精确像素 i ...
分类:
Web程序 时间:
2020-06-13 12:40:37
阅读次数:
85
1074 Reversing Linked List (25分) Given a constant K and a singly linked list L, you are supposed to reverse the links of every K elements on L. For ex ...
分类:
其他好文 时间:
2020-06-13 00:48:49
阅读次数:
54
<!DOCTYPE > <html> <head> <meta charset=UTF-8"> <title>DOM增删表格中的元素</title> <link rel="stylesheet" type="text/css" href="ex_2_style/css.css" /> <script ...
分类:
编程语言 时间:
2020-06-13 00:38:03
阅读次数:
73
以python代码为例: import requests def func(): session = requests.session() url = 'http://IP:8069/web?db=temp' # 指定数据库名称 url2 = 'http://IP:8069/stock_ex/sto ...
分类:
数据库 时间:
2020-06-11 13:47:53
阅读次数:
163
The sigmoid function is defined as sigmoid(x) = 1/(1+e-x). If the score is defined by 4x1 + 5x2 - 9 = score, then which of the following points has ex ...
分类:
其他好文 时间:
2020-06-11 09:12:55
阅读次数:
56