第14行代码输出的结果是1020 第15行代码输出的结果是30 代码(“”)是字符串 String 字符串在前则会对后面的结果进行拼接 字符串在后则对结果直接相加 三元运算符 ...
分类:
其他好文 时间:
2021-07-01 16:52:06
阅读次数:
0
一、依赖倒转原则介绍 二、依赖倒转原则引入 1.方式一(传统方式) public class DependencyInversion { public static void main(String[] args) { Person person = new Person(); person.rec ...
分类:
其他好文 时间:
2021-07-01 16:40:10
阅读次数:
0
一、单一职责原则介绍 二、单一职责原则引入 1.方式一(违反了单一职责原则) 解析:摩托车、汽车是公路上运行的,但飞机并不是在公路上运行的。 public class SingleResponsibility1 { public static void main(String[] args) { / ...
分类:
其他好文 时间:
2021-07-01 16:31:05
阅读次数:
0
1、当前集群状态 [kingbase@ECOLABAPP37 bin]$ ./repmgr cluster show ID | Name | Role | Status | Upstream | Location | Priority | Timeline | Connection string + ...
分类:
其他好文 时间:
2021-07-01 16:27:49
阅读次数:
0
string.IsNullOrEmpty:只能控制null和""string.IsNullOrWhiteSpace:控制null、""、" "(引号里面带空格) ...
分类:
其他好文 时间:
2021-06-30 18:35:25
阅读次数:
0
RestTemplate String url = "http://aaa.com"; URI uri = URI.create(url); post请求无参数 JSONObject jsonObject = restTemplate.postForObject(uri, "{}", JSONObj ...
分类:
其他好文 时间:
2021-06-30 18:30:07
阅读次数:
0
public static String getCodeOfFive(String prefix, int nowNum) { //需要返回的code StringBuilder codeSb = new StringBuilder(); //需要拼接的数字 StringBuilder numSb ...
分类:
其他好文 时间:
2021-06-30 18:24:06
阅读次数:
0
GET GET单参数 服务器 [OperationContract] string GetOneParameter(string value); [WebInvoke(Method = "GET", UriTemplate = "GetOneParameter/{value}", ResponseF ...
分类:
其他好文 时间:
2021-06-30 18:18:42
阅读次数:
0
直接贴源代码: package com.java.fmd; import java.util.Arrays; import java.util.Scanner; public class QuickSort { public static int b=1; public static void sw ...
分类:
编程语言 时间:
2021-06-30 18:18:09
阅读次数:
0
打印三角形 public class TriangleDemo { public static void main(String[] args) { for (int j = 1; j <= 5; j++) { for (int i = 5; i >= j; i--) { System.out.pr ...
分类:
编程语言 时间:
2021-06-30 18:13:09
阅读次数:
0