From 2ff5a076b2b559691194809075c0feb0ba285e33 Mon Sep 17 00:00:00 2001 From: zy_Java <654600784@qq.com> Date: Thu, 28 Oct 2021 15:38:23 +0800 Subject: [PATCH] =?UTF-8?q?20211028=E4=BF=AE=E6=94=B9=E4=BA=86=E6=B5=8B?= =?UTF-8?q?=E8=AF=95=E7=B1=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../test/java/com/ccsens/util/OtherTest.java | 19 +++++++++++++++++++ wechatutil/HELP.md | 17 +++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 wechatutil/HELP.md diff --git a/util/src/test/java/com/ccsens/util/OtherTest.java b/util/src/test/java/com/ccsens/util/OtherTest.java index b17857bb..b9139ae2 100644 --- a/util/src/test/java/com/ccsens/util/OtherTest.java +++ b/util/src/test/java/com/ccsens/util/OtherTest.java @@ -82,6 +82,25 @@ public class OtherTest { public AA() { } } + + @Test + public void test16(){ + AA a1 = new AA(0,1); + AA a2 = new AA(1,0); + AA a3 = new AA(0,1); + + List aas = new ArrayList<>(); + aas.add(a1); + aas.add(a2); + aas.add(a3); + + Set aaSet = new HashSet<>(aas); + + System.out.println(aaSet); + } + + + @Test public void test6() { AA a1 = new AA(1,4); diff --git a/wechatutil/HELP.md b/wechatutil/HELP.md new file mode 100644 index 00000000..2f809c94 --- /dev/null +++ b/wechatutil/HELP.md @@ -0,0 +1,17 @@ +# Getting Started + +### Reference Documentation +For further reference, please consider the following sections: + +* [Official Apache Maven documentation](https://maven.apache.org/guides/index.html) +* [Spring Boot Maven Plugin Reference Guide](https://docs.spring.io/spring-boot/docs/2.5.4/maven-plugin/reference/html/) +* [Create an OCI image](https://docs.spring.io/spring-boot/docs/2.5.4/maven-plugin/reference/html/#build-image) +* [Spring Web](https://docs.spring.io/spring-boot/docs/2.5.4/reference/htmlsingle/#boot-features-developing-web-applications) + +### Guides +The following guides illustrate how to use some features concretely: + +* [Building a RESTful Web Service](https://spring.io/guides/gs/rest-service/) +* [Serving Web Content with Spring MVC](https://spring.io/guides/gs/serving-web-content/) +* [Building REST services with Spring](https://spring.io/guides/tutorials/bookmarks/) +