码迷,mamicode.com
首页 >  
搜索关键字:integer    ( 14932个结果
4-1 YAML配置文件 注入 JavaBean中
新建 javaBean,有那么多个成员变量:【get、set、toString 那些不用我教了吧......】 private String lastName; private Integer age; private Boolean boss; private Date birth; privat ...
分类:编程语言   时间:2021-07-28 21:34:46    阅读次数:0
统一返回数据格式
1.定义返回码枚举 1 public interface ResultCode { 2 public static Integer SUCCESS = 20000; 3 public static Integer ERROR = 20001; 4 } 2. 创建结果类 1 @Data 2 publi ...
分类:其他好文   时间:2021-07-27 17:30:58    阅读次数:0
SQLAlchemy 多对多
参考官网: https://www.pythoncentral.io/sqlalchemy-orm-examples/ 员工部门两个表,中间为多对多关系,这种一般需要创建一个中间表。多对多转换成一对多 from sqlalchemy import Integer, Column, String, F ...
分类:数据库   时间:2021-07-26 16:48:08    阅读次数:0
消除 if else 判断
1.if..else public int calculate(int a, int b, String operator) { int result = Integer.MIN_VALUE; if ("add".equals(operator)) { result = a + b; } else ...
分类:其他好文   时间:2021-07-15 18:58:38    阅读次数:0
pg分区表一
PostgreSQL的分区表创建较Oracle分区表复杂些,需要借助创建继承表和触发器的模式实现, 具体创建方法可以参照以下实验, 供参考。 创建父表 123456789101112131415161718 CREATE TABLE fenqu_table ( id integer NOT NULL ...
分类:其他好文   时间:2021-07-12 17:52:04    阅读次数:0
leetcode-227-基本计算器||
public int calculate(String s) { int len = s.length(); Stack<Integer> s1 = new Stack<>(); // 操作数栈 int num = 0; char preSign = '+'; // 为了方便计算,1+1+1 > + ...
分类:其他好文   时间:2021-07-07 17:55:15    阅读次数:0
自定义一个自己的业务异常
自定义一个自己的业务异常 具体代码如下 @EqualsAndHashCode(callSuper = true) @Data public class ServiceException extends RuntimeException { private Integer code; private ...
分类:其他好文   时间:2021-07-05 18:24:18    阅读次数:0
有序表 TreeMap和TreeSet
TreeMap 与哈希表HashMap的区别: 有序表组织key,哈希表完全不组织。 **TreeMap关键点:**放入有序表中的元素,若不是基本类型,必须要有比较器,才能使其内部有序。 基本方法 Comparator<K> com = new Comparator<Integer>(){ @Ove ...
分类:其他好文   时间:2021-07-05 17:24:53    阅读次数:0
[LeetCode] 89. Gray Code
An n-bit gray code sequence is a sequence of 2n integers where: Every integer is in the inclusive range [0, 2n - 1], The first integer is 0, An intege ...
分类:其他好文   时间:2021-07-05 17:13:05    阅读次数:0
[LeetCode] 642. Design Search Autocomplete System_Hard tag: Trie
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
14932条   1 2 3 4 ... 1494 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!