Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

C#에서 'new' 키워드의 용도는 무엇입니까?

<시간/>

배열의 인스턴스를 생성하려면 new 키워드를 사용하십시오 -

int [] a = new int[5];

new 연산자는 개체를 만들거나 개체를 인스턴스화하는 데 사용됩니다. 여기 예제에서 새 −

를 사용하여 클래스에 대한 개체가 생성됩니다.

using System;

namespace CalculatorApplication {
   class NumberManipulator {
      public void swap(int x, int y) {
         int temp;

         temp = x; /* save the value of x */
         x = y; /* put y into x */
         y = temp; /* put temp into y */
      }
      static void Main(string[] args) {
         NumberManipulator n = new NumberManipulator();

         /* local variable definition */
         int a = 100;
         int b = 200;
         Console.WriteLine("Before swap, value of a : {0}", a);
         Console.WriteLine("Before swap, value of b : {0}", b);
         /* calling a function to swap the values */
         n.swap(a, b);
         Console.WriteLine("After swap, value of a : {0}", a);
         Console.WriteLine("After swap, value of b : {0}", b);
         Console.ReadLine();
      }
   }
}

출력

Before swap, value of a : 100
Before swap, value of b : 200
After swap, value of a : 100
After swap, value of b : 200