Understanding of interfaces in C #

Source: Internet
Author: User

. All are "virtual" and cannot be instantiated. This is why the interface cannot contain fields-member variables.
2. because the interface is virtual, the indexes, attributes, and time in the interface can only be declared, but cannot be implemented in the interface. How to implement it is a derivative interface or a derived class.
3. All have the nature of the template. If an interface or class inherits from an interface, it automatically has the features of the Consortium (including indexes, attributes, functions, and practices ).
4. interfaces support multi-inheritance. in C #, classes support single inheritance, which actually represents a type of bearer capability.
The following is a simple definition of the interface: CopyCode The Code is as follows: Interface
Sampinterface1
{
String
This [int Index]
{
Get;
Set
}

Event eventhandler event;
Void find (INT value );
// Note that no
{
}
String Po
Int
{
Get;
Set
}

}

The above interface defines an index this, a practice event, a method find and an attribute point.Copy codeThe Code is as follows: public interface sampineterface: sampineterface1 {
Pravite int A = 1;
Void find (INT value)
{
A + = value;
}
Event eventhandler event;
Protected void onevent ()
{
If (event = NULL)
{Return event (this. system. eventagrs. Empty ;)}
}
}

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.