摘要: public class ArrayTestor02 { public static void main(String[] args) { //构造杨辉三角 int[][] yanghui = new int[10][]; for (int i = 0; i < yanghui.length; i+ 阅读全文
posted @ 2023-05-14 12:57 无风听海 阅读(12) 评论(0) 推荐(0) 编辑
摘要: JDK 17.0.7 IntelliJ IDEA 2023.1.1 <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>17</maven.com 阅读全文
posted @ 2023-05-14 12:52 无风听海 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 通过idea创建maven项目的时候,需要等好长时间才能创建完毕,我摸索了很久,可以通过以下方式加快maven项目创建的速度。 使用阿里云镜像 在maven的conf\settings.xml中新加一个阿里云的镜像地址: <mirror> <id>alimaven</id> <mirrorOf>ce 阅读全文
posted @ 2023-05-14 12:36 无风听海 阅读(99) 评论(0) 推荐(0) 编辑