인용 대상이 관련된 메모리 문제를 되돌려줍니다.

2266 단어 메모리
using System;

namespace ConsoleApplication1

{

    class Program

    {

        int [] f()  //          int[]

        { int []a = new int[5] { 1, 2, 3, 4, 5 };

          return a; 

        }

         static void Main(string[] args)

         {Program obj=new Program();

          int[] a=obj.f();

          for (int i = 0;i<a.Length; i++)

          {Console.Write(a[i]+" ");}

          Console.ReadLine();

        }



        

    }

}
// , , , 。 !

좋은 웹페이지 즐겨찾기