包装类 基本数据类型所对应的引用数据类型 0bject可统一所有数据,包装类的默认值是null 包装类对应 基本数据类型 包装类型 byte Byte short Short int Integer long Long float Float double Double boolean Boolea ...
分类:
其他好文 时间:
2021-03-08 14:18:04
阅读次数:
0
类别 检查项 检查结果 代码 Readability 通过 Duplicated Code 通过 Hard Coding 通过 Long Method(100行) 通过 Long Parameter List(最多4个) 通过 Large Class 通过 Switch Statement 通过 L ...
分类:
其他好文 时间:
2021-03-08 14:04:45
阅读次数:
0
超短文警告! 埃氏筛: #include <iostream> #include <cstring> #include <stdio.h> #define HRiver2 return #define Warma 0 #define ll long long #define maxn 114514 ...
分类:
其他好文 时间:
2021-03-08 13:23:25
阅读次数:
0
导读 Lombok:可以让你的POJO代码特别简洁,不止简单在BO/VO/DTO/DO等大量使用,还有设计模式,对象对比等 MybatisPlus:增加版Mybatis,基础的数据库CRUD、分页等可以直接生成使用,避免了大量的重复低效代码,还有数据库自动Java类,sql文件等等,比传统的更贱简介 ...
分类:
编程语言 时间:
2021-03-08 13:15:54
阅读次数:
0
原文how to build RPM Author: Chris Negus Editor: Allison Pranger Date: 09/16/2011 译者:philoenglish.com 团队 译文: 概览 您已经创建了一些要安装在Red Hat Enterprise Linux系统上的 ...
分类:
其他好文 时间:
2021-03-08 13:15:27
阅读次数:
0
How to deploy EBS CSI on AWS EKS in China region? ISSUE Cannot access k8s.gcr.io repository in China region. Prerequisites Fetch the Account ID and sa ...
分类:
其他好文 时间:
2021-03-08 13:03:04
阅读次数:
0
注解和反射 注解 什么是注解: Annotation是从JDK5.0开始引入的新技术。 Annotation的作用: 1.不是程序本身,可以对程序作出解释。(这一点和注释(comment)没什么区别)。 2、可以被其他程序(比如:编译器等)读取。 Annotation的格式: 注解是以"@注释名"在 ...
分类:
其他好文 时间:
2021-03-06 15:00:03
阅读次数:
0
Step 1 — Installing Apache and Updating the Firewall Adjust the Firewall to Allow Web Traffic sudo apt update sudo apt upgrade sudo apt install apache ...
分类:
系统相关 时间:
2021-03-06 14:52:16
阅读次数:
0
先给出接口 type Handler interface { do() SetNext(handler Handler) Handler Run() } // 用以复用 type Next struct { nextHandler Handler } func (n *Next) SetNext(h ...
分类:
其他好文 时间:
2021-03-06 14:47:05
阅读次数:
0
#!/bin/bash #for.sh for i in `cat ./ip.txt`; do ip=`echo $i|awk -F: '{print $1}'` num=`echo $i|awk -F: '{print $2}'` echo $ip sleep 1 echo $num sleep ...
分类:
其他好文 时间:
2021-03-06 14:46:46
阅读次数:
0