当前位置:网站首页>The idea of the diagram
The idea of the diagram
2022-08-04 01:32:00 【Can't type 314】
diagram usage in idea
Reference URL:
https://mp.weixin.qq.com/s/BLIuW_xjN8Tnd0ZxqC1dlQ
Description
This article basically summarizes all the usage of diagram, to prevent loss, collect and reprint a wave
1. View the inheritance chain in graphical form
In the tab of the class you want to view, right-click and select Diagrams, there are show and show … Popup, but the former is newly created in the tab, and the latter is displayed in the form of a floating window:

Actually, you can also right-click on the class you want to view from the project directory tree on the left, and select Diagrams as well, the effect is the same:

Then you will get the inheritance relationship graph as shown below, taking a custom servlet as an example:

It is obvious that:
- The solid blue arrow indicates the inheritance relationship
- The green dotted arrow refers to the interface implementation relationship
2, optimize the inheritance chain graphics, think what I think
2.1 remove unrelated classes
Some of the inheritance relationship graphs obtained are not what we want to know, such as Object and Serializable in the above figure. We only want to care about the important inheritance relationships of Servlet. What should we do?
Simple, delete.Click to select the class you want to delete, then just use the delete key on your keyboard.After cleaning up the relationships of other classes, the graph is as follows:

2.2 Display class details
Some people say, eh, how can that be enough? I also want to see the inherited methods?Simple, IDEA has everything for you.
Right-click on the page, select show categories, and expand the properties, methods, constructors, etc. in the class as needed.Of course, the second method can also directly use the above toolbar:

Then you will get:

What, do you still want to filter in the method, for example, you want to see protected permissions and above?Simple, right-click to select Change Visibility Level, and adjust as needed.

What, do you think the graphics are too small for you to see clearly?IDEA can also satisfy you. Press and hold Alt on the keyboard, and a magnifying glass appears. Is it surprising or unexpected?

2.3 Add other classes to the relationship
When we also need to check whether other classes have an inheritance relationship with the current class, we can choose to add them to the current inheritance relationship graph.
Right-click on the page, select Add Class to Diagram, and then enter the class you want to add:

For example, we added a Student class as shown in the following figure.Well, there is no arrow, it seems that it has no indescribable relationship with the current classes and interfaces:

2.4 View specific code
If you want to view the specific source code of a certain class, such as a certain method, of course, it is impossible to display it on the graphics, otherwise the screen will not be able to explode?
But you can use graphics, or cooperate with IDEA's structure to easily and quickly enter the source code of a class for viewing.
After double-clicking a class, you can walk in the method list under it. For the method you want to view, right-click and select Jump to Source:


After selecting the structure in the left column, all the methods in the class will be displayed on the left as shown in the figure above. Click which method, and the page content will jump to the method section.
3, last
08464499)]
After selecting the structure in the left column, all the methods in the class will be displayed on the left as shown in the figure above. Click which method, and the page content will jump to the method section.
3, last
Using the IDEA functions mentioned above, learning and viewing class relationships, and understanding things such as mainstream framework source code, can be said to be very comfortable.
边栏推荐
- redis中常见的问题(缓存穿透,缓存雪崩,缓存击穿,redis淘汰策略)
- Android interview questions and answer analysis of major factories in the first half of 2022 (continuously updated...)
- 【日志框架】
- VR全景拍摄线上展馆,3D全景带你沉浸体验
- 如何通过API接口从淘宝(或天猫店)复制宝贝到拼多多接口代码对接教程
- 企业虚拟偶像产生了实质性的价值效益
- [store mall project 01] environment preparation and testing
- 螺旋矩阵_数组 | leecode刷题笔记
- 无代码7月热讯 | 微软首推数字联络中心平台;全球黑客马拉松...
- nodejs 安装多版本 版本切换
猜你喜欢
随机推荐
互斥锁、读写锁、自旋锁,以及原子操作指令xaddl、cmpxchg的使用场景剖析
600MHz频段来了,它会是新的黄金频段吗?
Android interview questions and answer analysis of major factories in the first half of 2022 (continuously updated...)
Modulo operation (MOD)
initramfs详解----添加硬盘驱动并访问磁盘
字符串的排列
typescript55 - generic constraints
typescript51 - basic use of generics
nodejs+express实现数据库mysql的访问,并展示数据到页面上
工程制图平面投影练习
谁说程序员不懂浪漫,表白代码来啦~
ASP.NET 获取数据库的数据并写入到excel表格中
一个项目的整体测试流程有哪几个阶段?测试方法有哪些?
JS 保姆级贴心,从零教你手写实现一个防抖debounce方法
C 学生管理系统 显示链表信息、删除链表
螺旋矩阵_数组 | leecode刷题笔记
MySQL回表指的是什么
Analysis: What makes the Nomad Bridge hack unique
appium软件自动化测试框架
VR panorama shooting online exhibition hall, 3D panorama brings you an immersive experience









