Home Backend Development C#.Net Tutorial Detailed explanation of examples of C# interface

Detailed explanation of examples of C# interface

Apr 24, 2017 pm 01:36 PM

1. The role of C# interface

Usage summary: Define an interface, which contains methods, but there is no code for the specific implementation of the methods. Then in the class that inherits the interface, you need to implement the code for all methods of the interface. But when you don't really understand the role of interfaces, you feel that using interfaces is superfluous. Of course, you are absolutely wrong to think so. Regarding the role of interfaces, there is someone on the Internet who gave us a very understandable analysis in a simple and in-depth manner.

[csharp] view plain copy

<p></p><pre code_snippet_id="219991" snippet_file_name="blog_20140306_1_6634576" name="code" class="csharp">//我们定义一个接口  
public interface IBark    
{  
    void Bark();  
}
Copy after login

//Define another class, inherit from IBark, and must implement the Bark() method

public class Dog:IBark    
{  
    public Dog()  
    {}  
    public void Bark()  //实现其中的Bark()方法  
    {  
       Consol.write("汪汪");  
     }  
}
Copy after login

//Then, Declare an instance of Dog and call the Bark() method

Dog Wangcai=new Dog();

Wangcai.Bark();

Question: If you want to call the Bark() method, don't you just need to declare such a method in Dog()? Why use an interface? Because there is no specific implementation of Bark() in the interface. The real implementation is still In Dog(). So isn’t it unnecessary to use an interface?

Some people also say this: From the definition of interface, the interface is actually an agreement between classes, a kind of Constraints. Take the above example as well. All classes that inherit the IBark interface must implement the Bark() method. So from the perspective of the user (the user who uses the class), if he knows that a certain class inherits from IBark interface, then he can confidently call the Bark() method without worrying about how the Bark() method is implemented. For example, we wrote another class. When the user uses the Cat class or the Dog class When you know that they inherit from IBark, you can directly call the Bark() method without worrying about the specific implementation in the class, because there must be specific implementations of the Bark() method in these two classes.

If we look at it from a design point of view, several classes need to be written in a project. Since these classes are relatively complex and the workload is relatively large, each class requires a staff member to write. For example, programmer A decides For the Dog class, programmer B writes the Cat class. These two classes have nothing to do with each other originally, but because the user needs them both to implement a method about "calling", this requires a constraint on them. Let them both inherit from The purpose of the IBark interface is to facilitate unified management. The other is to facilitate calling. Of course, the purpose can be achieved without using the interface. But in this case, this constraint is not so obvious. If such a class also has a Duck class, etc., compare Sometimes it is inevitable that someone will miss this method. Therefore, it is more reliable and more binding through the interface.

A simple explanation of the interface in C

# Suppose there are two types of programmers in our company: VB programmers refer to programmers who write programs in VB, represented by the class clsVBProgramer; Delphi programmers refer to programmers who write programs in Delphi, represented by the class clsVBProgramer clsDelphiProgramer class to represent. Every class has a WriteCode() method. The definition is as follows:

[csharp] view plain copy

class clsVBProgramer()  
{  
....  
WriteCode()  
{  
     //用VB语言写代码;  
}  
....  
}  
  
class clsDelphiProgramer()  
{  
....  
WriteCode()  
{  
    //用Delphi语言写代码;  
}  
   ....  
}
Copy after login

/*Now the company has a project and requires a programmer to write a program*/

class clsProject()  
{  
....  
WritePrograme(clsVBProgramer programer)//用VB写代码  
{  
    programer.WriteCode();  
}  
WritePrograme(clsDelphiProgramer programer)//重载方法,用Delphi写代码  
{  
    programer.WriteCode();  
}  
......  
}
Copy after login

In In the main program, we can write like this:

main()  
{  
   clsProject proj=new clsProject;  
   //如果需要用VB写代码  
   clsVBProgramer programer1=new clsVBProgramer;  
   proj.WritePrograme(programer1);  
   //如果需要用Delphi写代码  
   clsDelphiProgramer programer2=new clsDelphiProgramer;  
   proj.WritePrograme(programer2);  
}
Copy after login

But if the company comes to another C# programmer at this time, how can we change this program so that it can realize the function of writing programs in C#? We need to add a new class clsCSharpProgramer, and at the same time overload the WritePrograme (clsCSharpProgramer programer) method again in this clsProject class. This time it's more trouble. What if there are C programmers, C++ programmers, and Java programmers. Big trouble!

But if you use an interface instead, it will be completely different:
First declare a programmer interface:

interface IProgramer()
{
WriteCode();
}
Copy after login

Then declare two classes and implement the IProgramer interface:

class clsVBProgramer():IProgramer{....WriteCode(){     //用VB语言写代码;}....}
class clsDelphiProgramer():IProgramer{....WriteCode(){    //用Delphi语言写代码;}   ....}
Copy after login

Make some modifications to the clsProject class:

class clsProject(){....WritePrograme(IProgramer programer){    programer.WriteCode();//写代码}......}
main(){   clsProject proj=new clsProject;   IProgramer programer;   //如果需要用VB写代码   programer=new clsVBProgramer;   proj.WritePrograme(programer);   //如果需要用Delphi写代码   programer=new clsDelphiProgramer;   proj.WritePrograme(programer);   }
Copy after login

If there are more programmers like C#, C, C++, and JAVA added, we only need to add them Add the relevant classes, and then make slight modifications in main() and it will be OK. The scalability is particularly good!

In addition, if we seal the clsProject class into a component, then when our users need to expand functions, we only need to make small external modifications to achieve it. It can be said that it is basically There is no need to change the components we have already sealed! Isn’t it very convenient and powerful!

The above is the detailed content of Detailed explanation of examples of C# interface. For more information, please follow other related articles on the PHP Chinese website!

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)

Active Directory with C# Active Directory with C# Sep 03, 2024 pm 03:33 PM

Guide to Active Directory with C#. Here we discuss the introduction and how Active Directory works in C# along with the syntax and example.

Random Number Generator in C# Random Number Generator in C# Sep 03, 2024 pm 03:34 PM

Guide to Random Number Generator in C#. Here we discuss how Random Number Generator work, concept of pseudo-random and secure numbers.

Access Modifiers in C# Access Modifiers in C# Sep 03, 2024 pm 03:24 PM

Guide to the Access Modifiers in C#. We have discussed the Introduction Types of Access Modifiers in C# along with examples and outputs.

C# Data Grid View C# Data Grid View Sep 03, 2024 pm 03:32 PM

Guide to C# Data Grid View. Here we discuss the examples of how a data grid view can be loaded and exported from the SQL database or an excel file.

Patterns in C# Patterns in C# Sep 03, 2024 pm 03:33 PM

Guide to Patterns in C#. Here we discuss the introduction and top 3 types of Patterns in C# along with its examples and code implementation.

C# Serialization C# Serialization Sep 03, 2024 pm 03:30 PM

Guide to C# Serialization. Here we discuss the introduction, steps of C# serialization object, working, and example respectively.

Prime Numbers in C# Prime Numbers in C# Sep 03, 2024 pm 03:35 PM

Guide to Prime Numbers in C#. Here we discuss the introduction and examples of prime numbers in c# along with code implementation.

Web Services in C# Web Services in C# Sep 03, 2024 pm 03:32 PM

Guide to Web Services in C#. Here we discuss an introduction to Web Services in C# with technology use, limitation, and examples.

See all articles