Interfaces in C #

Source: Internet
Author: User

Considerations for the interface:
1) interfaces are implementations, and abstract methods are inherited
2) You can have common methods in the class that implements the interface
3) Define the interface using the keyword Internet
4) Implement Interface without keywords
5) Multiple interfaces can be implemented at one time

Example code:
Interface 1
public interface IFly
{
void Fly ();
}


Interface 2
public interface Irun
{
void Run ();
}

Implementing interfaces
public class Plan:ifly,irun
{
public void Fly ()
{
Console.WriteLine ("Plan Fly");
}
public void Run ()
{
Console.WriteLine ("RUN");
}
public void Eat ()//Common method
{
Console.WriteLine ("Eat");
}
}

Implementing interfaces
public class Brid:ifly
{
public void Fly ()
{
Console.WriteLine ("Fly");
}
}

Test class:

static void Main (string[] args)
{
list<ifly> list = new list<ifly> ()
{
New Brid (),
New Plan ()
};
foreach (IFly item in list)
{
Item. Fly ();
}
Console.readkey ();
}

Interfaces in C #

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.