Home php教程 php手册 C# refactoring

C# refactoring

Jul 06, 2016 pm 01:30 PM
code external Change write pass Refactor

Refactoring is the process of improving code after it is written by changing its internal structure without changing its external behavior. 1. When refactoring is needed 1. There are duplicate codes in the code; if there are duplicate code blocks in the class, it needs to be refined into a new independent method. If there is the same code in different classes, it should be refined into A new class. 2

Refactoring is the process of improving code after it is written by changing its internal structure without changing its external behavior.

1. When is reconstruction necessary

1. There are duplicate codes in the code;

If there is a duplicate code block in the class, it needs to be refined into a new independent method. If there is the same code in different classes, it should be refined into a new class.

2. Overly large classes and overly long methods;

Overly large classes are often the result of unreasonable class abstraction. Unreasonable class abstraction will reduce the code reuse rate. When you see a method that is too long, you need to find a way to divide it into multiple smaller methods.

The more lines of code in a method, the harder it is to understand. We recommend only 20-25 lines of code per method. But some people say rows 1-10 are more reasonable, this is just personal preference, there are no hard and fast rules. Extraction methods are one of the most common refactoring methods. If you find that a method is too long, or already needs a comment to describe its purpose, then you can apply the extraction method. People always ask how long a method should be, but length is not the root of the problem. When you're dealing with complex methods, keeping track of all the local variables is the most complex and time-consuming, and you can save some time by extracting a method. You can use Visual Studio to extract methods, which will help you track local variables and pass them to new methods or receive the return value of a method.

3. Modifications that affect the whole body in one move;

When you modify a small function or add a small function, it triggers a code earthquake. It may be caused by your design abstraction being not ideal enough and the functional code being too scattered.

4. Too much communication is required between classes;

Class A needs to call too many methods of class B to access the internal data of B. Shouldn't the two classes be separated at all?

5. Overcoupled information chain;

Middle layers are often used in code to achieve the purpose of loose coupling. However, if there are too many middle layers and they are connected layer by layer, do you need to consider reducing the number of middle layers?

6. Classes or methods with similar functions;

7. Imperfect design;

8. Lack of necessary comments;

9. Always control the size of the class

Oversized classes are trying to do too many things, which violates the Single Responsibility Principle (SRP), the S in object-oriented design principle SOLID.

Why must we separate the two responsibilities into separate classes? Because every responsibility is the center of change. When requirements change, the change will appear in the class responsible for that responsibility. If a class takes on multiple responsibilities, there will be more than one reason for its change. If a class has multiple responsibilities, these responsibilities are coupled together. And changes to a certain responsibility may weaken or limit the ability of this class to meet other responsibilities. This coupling will lead to a very fragile design, which may be broken unexpectedly when responsibilities change.

The following two items can be classified as rewriting and code specification issues.

10. Avoid too many parameters

Replace multiple parameters by declaring a class. Create a class to contain all parameters. Generally speaking, this is a better design, and this abstraction is very valuable.

11. Avoid complex expressions

Complex expressions mean that there is some hidden meaning behind them. We can use attributes to encapsulate these expressions to make the code more readable.

<span style="color: #0000ff;">if</span>(PRoduct.Price><span style="color: #800080;">500</span> && !product.IsDeleted && 
 !product.IsFeatured &&<span style="color: #000000;"> product.IsExported)
 {
    </span><span style="color: #008000;">//</span><span style="color: #008000;"> do something</span>
 }
Copy after login

2. Several reconstruction points in C# VS2010

1. Extraction method reconstruction

2. Rename and reconstruct

3. Encapsulation field reconstruction

4. Extraction interface reconstruction

5. Remove parameter reconstruction

6. Rearrange parameters and reconstruct


Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to change the storage location of wallpaper engine? How to set the save path in wallpaper engine How to change the storage location of wallpaper engine? How to set the save path in wallpaper engine Mar 13, 2024 pm 12:40 PM

Many users like to download various wallpapers and videos on WallpaperEngine. Over time, they will find that more and more wallpapers are downloaded, resulting in insufficient hard disk space. At this time, the storage location of WallpaperEngine can be changed to reduce the space occupied. So let’s take a look at how to change the save path for wallpaperengine. Step 1: Click Settings under steam in the upper left corner to open the following interface. Step 2: Click Download to find the "Steam Library Folder" under the content library, and click Open above. Step 3: Click Add Library Folder, select the path you want to change to, and after adding it, right-click on the default column.

How to change the font color of win7 desktop icons How to change the font color of win7 desktop icons Jan 02, 2024 pm 11:17 PM

The default desktop icon font of win7 is generally white. If we use a white desktop background, the desktop icon text may not be visible. At this time, we can customize the desktop font color through the advanced appearance settings in the personalization settings. The following is Let’s take a look together. Tutorial on changing the font color of win7 desktop icons 1. Right-click a blank space on the desktop and open the "Personalization" settings. 2. Under Theme, we can directly select the desired theme to change the font color of desktop icons. 3. If you are not satisfied with these themes, you can also turn on the "Window Color" as shown in the picture. 4. Click "Advanced Appearance Settings" below 5. Change the "Project" at the icon location to "Desktop" 6. Then you can change various attributes such as font color and size in the red box

How to solve win7 driver code 28 How to solve win7 driver code 28 Dec 30, 2023 pm 11:55 PM

Some users encountered errors when installing the device, prompting error code 28. In fact, this is mainly due to the driver. We only need to solve the problem of win7 driver code 28. Let’s take a look at what should be done. Do it. What to do with win7 driver code 28: First, we need to click on the start menu in the lower left corner of the screen. Then, find and click the "Control Panel" option in the pop-up menu. This option is usually located at or near the bottom of the menu. After clicking, the system will automatically open the control panel interface. In the control panel, we can perform various system settings and management operations. This is the first step in the nostalgia cleaning level, I hope it helps. Then we need to proceed and enter the system and

What to do if the blue screen code 0x0000001 occurs What to do if the blue screen code 0x0000001 occurs Feb 23, 2024 am 08:09 AM

What to do with blue screen code 0x0000001? The blue screen error is a warning mechanism when there is a problem with the computer system or hardware. Code 0x0000001 usually indicates a hardware or driver failure. When users suddenly encounter a blue screen error while using their computer, they may feel panicked and at a loss. Fortunately, most blue screen errors can be troubleshooted and dealt with with a few simple steps. This article will introduce readers to some methods to solve the blue screen error code 0x0000001. First, when encountering a blue screen error, we can try to restart

This workbook contains links to one or more external sources that may be unsafe This workbook contains links to one or more external sources that may be unsafe Feb 26, 2024 am 11:07 AM

Does Excel continue to throw This workbook contains links to one or more external sources that may display an unsafe warning message when opening the workbook? Many users have reported that they receive this warning whenever they open an Excel file. Although this warning indicates that there are potentially malicious links in the workbook, it may be triggered even if you have included a trusted external source. This workbook contains links to one or more potentially unsafe external sources if you open Excel. The warning "This workbook contains links to one or more external sources that may be unsafe" appears when you open a file. You can try the following solutions to resolve the issue: Check external links in the workbook and remove untrusted links. . Use the edit link feature

The computer frequently blue screens and the code is different every time The computer frequently blue screens and the code is different every time Jan 06, 2024 pm 10:53 PM

The win10 system is a very excellent high-intelligence system. Its powerful intelligence can bring the best user experience to users. Under normal circumstances, users’ win10 system computers will not have any problems! However, it is inevitable that various faults will occur in excellent computers. Recently, friends have been reporting that their win10 systems have encountered frequent blue screens! Today, the editor will bring you solutions to different codes that cause frequent blue screens in Windows 10 computers. Let’s take a look. Solutions to frequent computer blue screens with different codes each time: causes of various fault codes and solution suggestions 1. Cause of 0×000000116 fault: It should be that the graphics card driver is incompatible. Solution: It is recommended to replace the original manufacturer's driver. 2,

GE universal remote codes program on any device GE universal remote codes program on any device Mar 02, 2024 pm 01:58 PM

If you need to program any device remotely, this article will help you. We will share the top GE universal remote codes for programming any device. What is a GE remote control? GEUniversalRemote is a remote control that can be used to control multiple devices such as smart TVs, LG, Vizio, Sony, Blu-ray, DVD, DVR, Roku, AppleTV, streaming media players and more. GEUniversal remote controls come in various models with different features and functions. GEUniversalRemote can control up to four devices. Top Universal Remote Codes to Program on Any Device GE remotes come with a set of codes that allow them to work with different devices. you may

Resolve code 0xc000007b error Resolve code 0xc000007b error Feb 18, 2024 pm 07:34 PM

Termination Code 0xc000007b While using your computer, you sometimes encounter various problems and error codes. Among them, the termination code is the most disturbing, especially the termination code 0xc000007b. This code indicates that an application cannot start properly, causing inconvenience to the user. First, let’s understand the meaning of termination code 0xc000007b. This code is a Windows operating system error code that usually occurs when a 32-bit application tries to run on a 64-bit operating system. It means it should

See all articles