- 博客(4)
- 资源 (1)
- 收藏
- 关注
原创 ascii table
Dec = Decimal Value Char = Character '5' has the int value 53 if we write '5'-'0' it evaluates to 53-48, or the int 5 if we write char c = 'B'+32; then c stores 'b' Dec Char ...
2018-11-08 19:20:35
249
原创 python-使用阿里云镜像加速
1. 在当前用户根目录下建立.pip文件夹 mkdir ~/.pip 2.在.pip文件夹下创建文件pip.conf,并追加内容 [global] trusted-host=mirrors.aliyun.com index-url=http://mirrors.aliyun.com/pypi/simple/ ...
2018-09-04 12:14:19
2220
原创 Java-去掉小数后边多余的0
private String trimZero(String s) { if (s.indexOf(".") > 0) { // 去掉多余的0 s = s.replaceAll("0+?$", ""); // 如最后一位是.则去掉 s = s.replaceAll("[.]$", ""); } retu..
2018-08-24 09:35:23
6313
原创 mysql-停止正在执行的存储过程
1. 输入show processlist;命令查看正在执行的任务 2.查看Info找到任务对应的Id,执行kill命令
2018-08-24 09:23:19
11916
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人