Ref and out keywords

Source: Internet
Author: User

    class ParameterTest    {        static void Main(string[] args)        {            int i = 0;            int[] ints = { 0, 1, 2, 4, 8 };            Console.WriteLine("i = " + i);            Console.WriteLine("ints[0] = " + ints[0]);            SomeFunction(ints,i);            Console.WriteLine("i = " + i);            Console.WriteLine("ints[0] = " + ints[0]);            Console.ReadKey();        }        static void SomeFunction(int[] ints,int i)        {            ints[0] = 100;            i = 100;        }    }

    class ParameterTest    {        static void Main(string[] args)        {            int i = 0;            int[] ints = { 0, 1, 2, 4, 8 };            Console.WriteLine("i = " + i);            Console.WriteLine("ints[0] = " + ints[0]);            SomeFunction(ints,ref i);            Console.WriteLine("i = " + i);            Console.WriteLine("ints[0] = " + ints[0]);            Console.ReadKey();        }        static void SomeFunction(int[] ints,ref int i)        {            ints[0] = 100;            i = 100;        }    }

If you pass a parameter to the method, and the input parameter money of this method carries the ref keyword, any change made to the variable by the method will affect the value of the original object.

    class OutTest    {        static void Main(string[] args)        {            int i;            SomeFunction(out i);            Console.WriteLine(i);            Console.ReadKey();        }        static void SomeFunction(out int i)        {            i = 100;        }    }
View code

If the variable is not assigned an initial value but is used, an error is returned. Instead, an out keyword can be used to solve this problem.

Ref and out keywords

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.