== equals是两种字符串的方式 区别 == 是比较两个对象的引用地址值 equals是比较两个对象的具体内容 示例 package com.oop.demo06; public class Demo01 { public static void main(String[] args) { St ...
分类:
其他好文 时间:
2021-07-14 18:50:51
阅读次数:
0
自定义一个自己的业务异常 具体代码如下 @EqualsAndHashCode(callSuper = true) @Data public class ServiceException extends RuntimeException { private Integer code; private ...
分类:
其他好文 时间:
2021-07-05 18:24:18
阅读次数:
0
一、多线程方法一(继承Thread类) package Demo01;//继承线程类Threadpublic class MyThread extends Thread{ //重写 run()方法 @Override public void run() { for (int i = 0; i < 2 ...
分类:
编程语言 时间:
2021-07-02 16:18:56
阅读次数:
0
If a machine can save only 3 significant digits, the float numbers 12300 and 12358.9 are considered equal since they are both saved as 0 with simple c ...
分类:
其他好文 时间:
2021-07-02 15:54:07
阅读次数:
0
##无重复字符的最长子串 给定一个字符串,请你找出其中不含有重复字符的 最长子串 的长度。 ###示例 1: 输入: s = "abcabcbb" 输出: 3 解释: 因为无重复字符的最长子串是 "abc",所以其长度为 3。 class Solution { public int lengthOf ...
分类:
其他好文 时间:
2021-07-02 15:47:36
阅读次数:
0
程序的一部分如下:System.out.println(labelInADT); System.out.println(intervalSet.labels()); System.out.println(intervalSet.labels().contains(labelInADT)); 其中la ...
分类:
其他好文 时间:
2021-07-01 17:25:01
阅读次数:
0
PHP 算数运算符 运算符名称例子结果显示结果 + 加法 $x + $y $x 与 $y 求和 显示结果 - 减法 $x - $y $x 与 $y 的差数 显示结果 * 乘法 $x * $y $x 与 $y 的乘积 显示结果 / 除法 $x / $y $x 与 $y 的商数 显示结果 % 取模 $x ...
分类:
Web程序 时间:
2021-06-30 17:32:51
阅读次数:
0
package leetcode; import java.util.ArrayList; import java.util.List; public class demo_93 { public List<String> restoreIpAddresses(String s) { List<St ...
分类:
其他好文 时间:
2021-06-28 17:51:49
阅读次数:
0
unittest相关内容 一、什么是unittest unittest是Python单元测试框架,类似于JUnit框架。 unittest中有4个重要的概念:test fixture, test case, test suite, test runner Testcase: 一个TestCase的实 ...
分类:
其他好文 时间:
2021-06-24 18:12:57
阅读次数:
0
前言之前使用jpa的时候一直感慨它的一些原来就有的方法很好用,一边不是很习惯这种不是xml写sql的方式,尤其在用习惯了mybatis之后,在使用jpa写动态查询的时候真的一头雾水,直到发现了**Specification** 这个神奇的东西,使用下来觉得他和mybatis plus的条件构造器很像 ...
分类:
其他好文 时间:
2021-06-22 17:52:52
阅读次数:
0