C # overload and recursion of Basic Methods,

Source: Internet
Author: User

C # overload and recursion of Basic Methods,
1. Method Overloading

The method name is the same, but the parameters are different. For example, Console. WriteLine ();

1. Ensure that the number and type of parameters are the same;

2. Ensure that the parameter types are the same and the number of parameters cannot be the same;

3. The method overload has no relationship with the return value type, so it cannot constitute an overload;

2. recursion of methods

Using System; using System. collections. generic; using System. linq; using System. text; using System. threading. tasks; namespace ChuangzhiConsel {class Program {public static int I = 0; static void Main (string [] args) {Tets (); Console. readKey ();} public static void Tets () {I ++; Console. writeLine ("I want to anger! "); If (I >= 10) {return;} Tets ();}}}

At the end of the day, I stayed here for 10 times:

Because each recursion is equivalent to passing through several structures, it is necessary to exit again when exiting.

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.