2020年9月6日

idea报错:java 不支持发行版本5

摘要: 参考如下链接,修改后即可使用。 https://blog.csdn.net/qq_22076345/article/details/82392236 阅读全文

posted @ 2020-09-06 09:05 isl-歪歪 阅读(162) 评论(0) 推荐(0) 编辑

2020年8月23日

java-访问权限

摘要: Public:visible to the world. Protected: visible to the package and all subclasses . Default: visible to the package. No modifiers are needed. Private: 阅读全文

posted @ 2020-08-23 08:58 isl-歪歪 阅读(82) 评论(0) 推荐(0) 编辑

2020年8月16日

IDEA图标含义

摘要: 参考官方文档:https://www.jetbrains.com/help/idea/symbols.html#common-icons 自己常用的列在下面: 图标上有灰边边的是抽象的,比如抽象类、方法 IconDescription Class Abstract class Groovy clas 阅读全文

posted @ 2020-08-16 15:10 isl-歪歪 阅读(377) 评论(0) 推荐(0) 编辑

IDEA生成UML类图

摘要: 1. 打开设置File-Settings 2. 在搜索框输入diagram,找到Tools下面的Diagrams,在Java Class Diagrams里面选中前三项:成员变量、构造器、方法。 3. 选中你需要绘制类图的 package,右键单击,选择“show diagrams” 4. 选择“J 阅读全文

posted @ 2020-08-16 14:53 isl-歪歪 阅读(3119) 评论(0) 推荐(0) 编辑

2020年7月10日

idea快捷键

摘要: 1. 查看java api ,ctrl+q 2. 查找: |--查找当前文件:ctrl+F |--全局文件查找:按两下shift,或者 ctrl+shift+F |--替换:ctrl+R3. 查看: |--查看接口的实现类:ctrl+alt+单击接口名 4. 跳转: |--跳转到某一行:ctrl+G 阅读全文

posted @ 2020-07-10 11:16 isl-歪歪 阅读(173) 评论(0) 推荐(0) 编辑

idea同时运行两个main()

摘要: 1. 选择一个程序先运行起来,看右上角,点开“Edit Configurations” 2. 选中右上角的“Allows parallel run”,再去运行另外一个程序就可以了 阅读全文

posted @ 2020-07-10 11:14 isl-歪歪 阅读(4903) 评论(0) 推荐(0) 编辑

2020年2月4日

idea关闭vim编辑模式

摘要: 工具栏--Tools--Vim Emulator,把前面的对勾勾掉就行了 阅读全文

posted @ 2020-02-04 16:57 isl-歪歪 阅读(912) 评论(0) 推荐(0) 编辑

2020年2月3日

java基本数据类型--Basic Datatypes

摘要: Variables are nothing but reserved memory locations to store values. This means that when you create a variable you reserve some space in the memory. 阅读全文

posted @ 2020-02-03 16:57 isl-歪歪 阅读(178) 评论(0) 推荐(0) 编辑

2020年2月2日

对象/类

摘要: 1. Objects&Class--对象&类 Object − Objects have states and behaviors. An object is an instance of a class. Example: A dog has states - color, name, breed 阅读全文

posted @ 2020-02-02 22:38 isl-歪歪 阅读(107) 评论(0) 推荐(0) 编辑

jar 包和 war 包的区别

摘要: Definition--定义 A JAR(Java Archive) file is a file with Java classes, associated metadata, and resources such as text and images aggregated into one fi 阅读全文

posted @ 2020-02-02 21:34 isl-歪歪 阅读(140) 评论(0) 推荐(0) 编辑

导航