今天再次看到那个段视频: 瓶子里面:先放入乒乓球 is that full? 再放入小糖豆 is that full ? 又倒入沙子 is that full ? 又倒入水 is that full ? ... 乒乓球 代表? 糖豆 代表? 沙子 代表? 水 代表 ? 如果 你 先放入 糖豆,乒乓球 ...
分类:
其他好文 时间:
2020-06-13 21:31:46
阅读次数:
62
package jkcs; import java.net.MalformedURLException; import java.net.URL; import java.util.concurrent.TimeUnit; import org.openqa.selenium.remote.Desi ...
分类:
移动开发 时间:
2020-06-13 21:23:50
阅读次数:
86
前言 MySQL 为关系型数据库(Relational Database Management System),一个关系型数据库由一个或数个表格组成, 表格一般包括以下: 表头(header): 每一列的名称; 列(col): 具有相同数据类型的数据的集合; 行(row): 每一行用来描述某个人/物 ...
分类:
数据库 时间:
2020-06-13 17:38:06
阅读次数:
84
1.nmp install express -g环境配置报错 npm ERR! code UNABLE_TO_VERIFY_LEAF_SIGNATUREnpm ERR! errno UNABLE_TO_VERIFY_LEAF_SIGNATUREnpm ERR! request to https:// ...
分类:
Web程序 时间:
2020-06-13 14:32:53
阅读次数:
60
发现一点:只要开启了CONTROLFILE AUTOBACKUP,就算只备份一个归档日志最后一步也一定会备份控制文件和spfile(如果是pfile启动,则不会备份spfile) 整库备份的最好方法 CONFIGURE CONTROLFILE AUTOBACKUP ON; backup databa ...
分类:
数据库 时间:
2020-06-13 12:45:48
阅读次数:
60
下载附件拿到源码。 #include <stdio.h> #include <string.h> int main(int argc, char *argv[]) { if (argc != 4) { printf("what?\n"); exit(1); } unsigned int first ...
分类:
其他好文 时间:
2020-06-13 11:15:35
阅读次数:
58
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
LeetCode 91 动态规划 Decode Ways 解码方法LeetCodeA message containing letters from A-Z is being encoded to numbers using the following mapping:'A' -> 1'B' -> ... ...
分类:
其他好文 时间:
2020-06-13 00:18:17
阅读次数:
56
1.报错信息: org.apache.ibatis.exceptions.PersistenceException: ### Error querying database. Cause: org.apache.ibatis.builder.IncompleteElementException: C ...
分类:
移动开发 时间:
2020-06-12 20:38:20
阅读次数:
80
创建数据库: use DATABASE_NAME 查看所有数据库: show dbs 删除数据库: db.dropDatabase() 删除集合: db.collection.drop() 创建集合: db.createCollection(name, options) 参数说明: name:要创建 ...
分类:
数据库 时间:
2020-06-12 20:34:03
阅读次数:
66