05. C # Generic Type (chapter 3 3.1-3.2 ),

Source: Internet
Author: User

05. C # Generic Type (chapter 3 3.1-3.2 ),

Next, let's talk about the generics in C #. The Skillful Use of generics can improve the reusability of code. When we use our code, we will be very tall. Of course there is only a little bit, but there is really only a little bit, because there is still a lot of knowledge to be learned and mastered later. First, let's take a look at the example of using Dictionary <TKey, TValue>.

 1 static void Main(string[] args) 2 { 3    Dictionary<int, string> result = GetAll(); 4 } 5  6 public static Dictionary<int, string> GetAll() 7 { 8   var dic = new Dictionary<int, string>(); 9    dic.Add(1, "aaa");10    dic.Add(1, "aaa");11    dic.Add(1, "aaa");12    return dic;13 }

Two types of generics: Generic Type (class, interface, delegate, and structure) and generic method. For example, TKey and TValue are type parameters, the input int and string are the actual types. We can see that the type parameter is only a placeholder of the actual type. The generic type that does not provide real parameters for the type parameter is called the unconstructed generic type. If the real parameter of the type is specified as the constructed type, the instance of the type is the object we use. Graph.

The judgment on generics is a headache. Next, let's talk about it. It may not be very clear. Try your best, because I don't quite understand what it says in the book, in this example. If you are not clear, you can read the explanation in the book. First look

When we look at this generic method, we need to replace the parameter type in actual use (as mentioned earlier, the parameter type is actually a placeholder of the type real parameter ), replace T with string and TOutput with int.

1 public static List<int> GetAll(Converter<string, int> conv)2 {3 }

Converter <string, int> is a constructed type, and conv is a form parameter. Now we should be able to understand the function of this generic method: Use a Converter <string, int> an instance of a generic delegate is returned as a parameter and contains a list of integers.

Please make an axe.

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.