before commit, do: git rm --cached <filename> ATTENTION: do not use 'git rm <filename>', this will delete the file from disk if commited, first use: " ...
分类:
其他好文 时间:
2021-07-01 17:07:16
阅读次数:
0
Design a search autocomplete system for a search engine. Users may input a sentence (at least one word and end with a special character '#'). You are ...
分类:
其他好文 时间:
2021-06-30 18:12:21
阅读次数:
0
一.Object类 1.toString 一般子类都有覆盖。默认返回:对象的 class 名称 + @ + hashCode 的十六进制字符串。 public String toString() { return getClass().getName() + "@" + Integer.toHexS ...
分类:
其他好文 时间:
2021-06-30 18:09:41
阅读次数:
0
位运算符包含: & 与、| 或、^ 异或 、~ 取反、>> 右移、<< 左移、>>> 参考地址:https://www.cnblogs.com/findbetterme/p/10787118.html 1<<31 == Integer.MIN_VALUE 原因:https://www.jianshu ...
分类:
编程语言 时间:
2021-06-30 18:03:26
阅读次数:
0
1.设置集合中全部元素的某一个属性的值 Integer status = NoticeReadStatusEnum.READED.getCode(); List<NoticeSendRecord> collect = noticeSendRecordList.stream().map(record ...
分类:
编程语言 时间:
2021-06-29 16:11:07
阅读次数:
0
Public rnTem As Range Public stKehu As String Public temDingdan As String Public Const rowDingdan As Integer = 22 Public Sub ShengchengTongjiJine() Ap ...
分类:
其他好文 时间:
2021-06-29 15:20:19
阅读次数:
0
direct(current time and current queue number, 25 queue number equals 1 minute) reverse(target time and current queue number, 25 queue number equals 1 ...
分类:
其他好文 时间:
2021-06-28 21:06:27
阅读次数:
0
Given an integer array nums and an integer k, return the kth largest element in the array. Note that it is the kth largest element in the sorted order ...
分类:
其他好文 时间:
2021-06-28 20:35:29
阅读次数:
0
Java基础-数字与字符串 装箱与拆箱 1.所有的基本类型,都有对应的类类型,比如int对应的类是Integer,这种类就叫做封装类。 2.数字封装类有Byte,Short,Long,Float,Double...这些类都是抽象类Number的子类,Number类属于java.lang包。 3.基本 ...
分类:
编程语言 时间:
2021-06-28 19:30:44
阅读次数:
0
使用 StringBuilder 或者 stringBuffer 的 reverse() 方法。 示例代码: // StringBuffer reverse StringBuffer stringBuffer = new StringBuffer(); stringBuffer. append("a ...
分类:
其他好文 时间:
2021-06-28 17:39:09
阅读次数:
0