Code Refactoring for .NET
Czas trwania
24
hours
Lokalizacja
Online
Język
English
Kod
DEV-006_NET
Szkolenie dla #uczestników# lub większej liczby osób?
Dostosuj treningi
dla Twoich konkretnych potrzeb
Opis
Have you ever encountered source code is difficult to read? Where you spend a lot of time trying to understand what the developer wanted to express in that particular code fragment.In this training we’ll show you how to not become that developer. You will learn about code smells, why and where they appear, and what techniques are used to remove them. We’ll start from simple problems in a single function and end with problems of communication between classes. We will also discuss what should and what should not be done to make your code easy to read.
Po ukończeniu kursu na formularzu Luxoft Training
wydawany jest certyfikat
wydawany jest certyfikat
Cele
- Provide an overview of code smells
- Best practices for improving the readability of existing code
- How to identify problems in C# program code
- How to improve readability of C# source code
Grupa docelowa
- C# developers with 1 to 2 years of experience
Warunki wstępne
- General basic knowledge of programming
- Basic knowledge of script languages
- Understanding code logic flows
Plan działania
Refactoring
Code smells
Common problems in code
Smells inside a class
Moving features between objects
Problems in communication between classes
- Introduction
- The notion of refactoring, purpose of refactoring
- Test-driven development
Code smells
- Overview
- Definition of code smell
- Good design principles
- Code smells in tests, smells in databases (overview)
- Smells in architecture, smells in personnel management
Common problems in code
- Organizing data
- Fields
- Data arrays
- References and values
- Code fields
- Simplifying conditional expressions
- Simplifying method calls
- Dealing with generalization
- Composing methods
Smells inside a class
- Easily discovered problems
- Names
- Excessive complexity
- Duplication
- Conditional logic
Moving features between objects
- Single responsibility principle
- Cohesion
- The Law of Demeter
- Moving methods/fields
- Extracting a class
- Inline class
- Hiding delegates
- Remove middle man
- Extension methods
Problems in communication between classes
- Data. Inheritance
- Responsibility
- Adopting changes
- Library classes