摘要: Java 基础复习 java常用转义字符 1) \t 一个制表位,实现对齐的功能 2) \n 换行符 3) \\ 一个\ 4)\" 一个" 5) \' 一个' 6) \r 一个回车 注释 单行注释 // 多行注释 /* */ 文档注释 /** */ 生成文档 javadoc -d 准备的地址(如f: 阅读全文
posted @ 2023-01-17 23:32 攸鱼 阅读(35) 评论(0) 推荐(0)
摘要: 什么是注解(Annotation) Annotation的作用: 用于对程序作出解释,可以被其他程序读取 Annotation的格式: @注释名 //还可以添加一些参数 如:@SuppressWarnings(value="unchecked") 内置注解 @Override 重写的注解 @Depr 阅读全文
posted @ 2023-01-15 23:41 攸鱼 阅读(472) 评论(0) 推荐(0)
摘要: vue-cli脚手架3.0前后版本切换 3.0以上—>3.0以下: vue -V //查询版本号 npm uninstall -g @vue/cli //卸载 npm install -g vue-cli //安装2.9.6 npm i npm -g npm i vue-cli -g cnpm i 阅读全文
posted @ 2023-01-15 10:29 攸鱼 阅读(32) 评论(0) 推荐(0)
摘要: idea热加载 pom.xml <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuratio 阅读全文
posted @ 2023-01-14 22:27 攸鱼 阅读(134) 评论(0) 推荐(0)