Demonstrate C # template capabilities

Source: Internet
Author: User

In fact, the C # template is not powerful, and some code can basically demonstrate the C # template capabilities. And the C # template has no more capabilities. When I first came into contact with the C #2.0 template, I was excited. In a few days, I felt that my capabilities were still very limited. This may also reflect a simple and easy-to-use principle. After all, C # is a popular language!

// Unlike C ++, you need to use template <class T, class V>
// Or template <typename T, typename V> declares template parameters
Public class A <T, V>
{
Public static int I = 0;
}

// Partial instantiation
Public class A <T>: A <T, object>
{
Public static new int I = A <T, object>. I + 1;
}

// Partial instantiation. The constraint T must implement the interface ICollection <T>
Public class C <T>: A <T, string> where T: ICollection <T>
{
}

Public class D
{
// Templated method. The constraint T must have a default constructor.
Public t f <T> () where T: new ()
{
Return new T ();
}
}
Related Article

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.