【事件】 bike trip Describe an unforgettable bike trip you had You should say: When and where you had the trip Who you went with Why you had the trip by b ...
分类:
其他好文 时间:
2021-04-21 12:57:26
阅读次数:
0
Java字符串 三个字符串类 String (不可变) StringBuilder (可变) StringBuffer(可变) 空字符串不是null,空字符串分配了空间,而null没有分配空间 不可变字符串的创建 package chapter8; public class chapt01 { pu ...
分类:
编程语言 时间:
2021-04-21 12:02:46
阅读次数:
0
1.Ingress测试示例 1.定义一个deployment [root@k8s-master01 service-ingress]# cat nginx-test.yaml apiVersion: v1 kind: Service metadata: name: ingress-test labe ...
分类:
其他好文 时间:
2021-04-16 12:25:19
阅读次数:
0
枚举变量的内存布局 查看内存布局的方法 得到变量的内存地址 Xcode → Debug → Debug Workflow → View Memory → 输入内存地址 在下边栏 右击 点击 view memory of "" 普通枚举 enum TestEnum { case test1, test ...
分类:
其他好文 时间:
2021-04-15 12:07:55
阅读次数:
0
When you run hexo g on any web instances, like on AWS or Azure, you might get the following error: (node:3568) ExperimentalWarning: The fs.promises AP ...
分类:
其他好文 时间:
2021-04-12 12:28:51
阅读次数:
0
题目:求1+2+3+...+n,要求不能使用乘除法、for、while、if、else、switch、case等关键字及条件判断语句(A?B:C)。 思路:计算1+2+3+...+n, 可以认为是一个递归的过程, 这点很容易理解。但是怎么不用分支判断来保证递归的终止呢。通过短路运算0&&cout使条 ...
分类:
其他好文 时间:
2021-04-12 12:09:00
阅读次数:
0
LIKE中和如何匹配通配符本身 LIKE中使用%和_作为通配符是常用操作,但是如果想要文本中的%和_怎么办? 解决:在前面加上\ 即可 -- 验证匹配文本中的_ SELECT case when 'event_sadfad' like '%\_%' then 1 else 0 end -- retu ...
分类:
数据库 时间:
2021-04-10 12:50:47
阅读次数:
0
项目中遇到如下报错内容:Uncaught (in promise) Error: Uncaught (in promise) Error: Redirected when going from "/login" to "/home" via a navigation guard. 原因:vue-ro ...
分类:
其他好文 时间:
2021-04-07 11:16:46
阅读次数:
0
$n$ 个区间,互不相交,$m$ 条线段排好序,一条线段连接两个区间当且仅当线段的两个端点分别在两个相邻的区间内,问是否能将所有区间连通 ...
分类:
其他好文 时间:
2021-04-06 14:02:52
阅读次数:
0
今天在做调取相册返回的时候, 出现一种新型的类型, 也许是我以前没碰到过这种类型吧.如下 content://com.android.providers.downloads.documents/document/raw%3A%2Fstorage%2Femulated%2F0%2FDownload%2 ...
分类:
移动开发 时间:
2021-04-02 13:09:59
阅读次数:
0