一.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
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
1. 题目 1.1 英文题目 Given an integer array nums and an integer val, remove all occurrences of val in nums in-place. The relative order of the elements may ...
分类:
编程语言 时间:
2021-06-25 17:23:46
阅读次数:
0
BigInteger: 对大整数类进行操作,超过long能存储的范围 BigDecimal:对高精度小数进行操作 BigInteger bg = new BigInteger("0"); 初始化 并赋值为0 BigInteger类只能与BigInteger类 进行操作 常用方法: bg.add( ) ...
分类:
其他好文 时间:
2021-06-25 17:05:29
阅读次数:
0
难度 medium 现在你总共有 n 门课需要选,记为 0 到 n-1。 在选修某些课程之前需要一些先修课程。 例如,想要学习课程 0 ,你需要先完成课程 1 ,我们用一个匹配来表示他们: [0,1] 给定课程总量以及它们的先决条件,返回你为了学完所有课程所安排的学习顺序。 可能会有多个正确的顺序, ...
分类:
其他好文 时间:
2021-06-24 17:49:46
阅读次数:
0
FastReport 3.X var PageLine: integer; //在現在頁列印到第幾行 PageMaxRow: integer=15; //設定每頁列數 procedure MasterData1OnBeforePrint(Sender: TfrxComponent); begin P ...
分类:
其他好文 时间:
2021-06-22 18:27:26
阅读次数:
0