java.lang.IllegalStateException: The platform metadata area could not be written: /private/var/folders/tt/8n9j9ywx7zn9tklqhyj2r4_h0000gn/T/AppTransloc ...
分类:
编程语言 时间:
2020-07-03 00:53:52
阅读次数:
135
Given a binary array, find the maximum number of consecutive 1s in this array. Example 1: Input: [1,1,0,1,1,1] Output: 3 Explanation: The first two di ...
分类:
其他好文 时间:
2020-07-02 23:22:50
阅读次数:
99
Given an array of integers, find if the array contains any duplicates. Your function should return true if any value appears at least twice in the arr ...
分类:
其他好文 时间:
2020-07-02 22:01:14
阅读次数:
60
解决方法: 右键点击 tomcat 然后选择clean, 再重新启动项目 ...
分类:
Web程序 时间:
2020-07-02 18:13:17
阅读次数:
116
package main import( "database/sql" "fmt" _ "github.com/go-sql-driver/mysql" "bytes" "encoding/json" "io/ioutil" "net/http" "time" ) type User struct{ ...
分类:
其他好文 时间:
2020-07-02 16:43:00
阅读次数:
48
php7版本openssl扩展升级安装,swoole openssl扩展安装高版本自定义编译安装 php升级openssl扩展,swoole升级openssl扩展 报错configure: error: Cannot find OpenSSL's libraries异常使用第三项 php升级open ...
分类:
Web程序 时间:
2020-07-02 16:12:30
阅读次数:
76
1.1概述 现实生活中,咱们常会看到这样的一种调集:IP地址与主机名,身份证号与个人,体系用户名与体系用户目标等,这种一一对应的联系,就叫做映射。Java供给了专门的调集类用来存放这种目标联系的目标,即java.util.Map接口。 咱们经过检查Map接口描述,发现Map接口下的调集与Collec ...
分类:
编程语言 时间:
2020-07-02 16:09:18
阅读次数:
61
项目里使用了Mongodb作为数据库,不同于Mysql,这是一个非关系型数据库,因此不能使用SQL 下面是我对NoSQL的学习 条件查询 第一个花括号 查找全部 db.users.find() 复制代码 精准查找 db.users.find({"name":"zhangsan"}) 复制代码 精准查 ...
分类:
数据库 时间:
2020-07-02 13:38:47
阅读次数:
72
自己最近在思考一个问题,如何让自己的代码质量逐渐提高,于是想到整理这个系列,通过阅读别人的代码,从别人的代码中学习,来逐渐提高自己的代码质量。本篇是这个系列的第一篇,我也不知道自己会写多少篇,但是希望自己能坚持下去。 第一个自己学习的源码是:https://github.com/LyricTian/ ...
分类:
其他好文 时间:
2020-07-02 13:29:42
阅读次数:
49
find 相关命令:which,whereis,locate find 查找目录和文件 find 路径 -命令参数 [输出形式] 参数说明: 路径:告诉find在哪儿去找你要的东西, 命令参数:参数很多下面会说到 输出形式:输出形式很多,-print,-printf,-print0,-exec,-o ...
分类:
其他好文 时间:
2020-07-02 13:14:08
阅读次数:
68