C#의 Array 클래스는 어떤 인터페이스를 구현합니까?

WBOY
풀어 주다: 2023-09-16 16:17:04
앞으로
1288명이 탐색했습니다.

C#의 Array 클래스는 어떤 인터페이스를 구현합니까?

System.Array는 ICloneable, IList, ICollection 및 IEnumerable과 같은 인터페이스를 구현합니다. ICloneable 인터페이스는 기존 개체의 복사본인 복제본을 만듭니다.

ICloneable 인터페이스를 이해해 봅시다. 현재 인스턴스의 복사본인 새 객체를 생성하기 때문에 Clone() 메서드만 있습니다.

다음 예에서는 ICloneable 인터페이스를 사용하여 복제를 수행하는 방법을 보여줍니다. -

Example

using System;

class Car : ICloneable {
   int width;

   public Car(int width) {
      this.width = width;
   }

   public object Clone() {
      return new Car(this.width);
   }

   public override string ToString() {
      return string.Format("Width of car = {0}",this.width);
   }
}

class Program {
   static void Main() {
      Car carOne = new Car(1695);
      Car carTwo = carOne.Clone() as Car;

      Console.WriteLine("{0}mm", carOne);
      Console.WriteLine("{0}mm", carTwo);
   }
}
로그인 후 복사

이제 C#에서 Array.Clone을 사용하여 배열을 복제하는 방법을 살펴보겠습니다. -

Example

using System;

class Program {
   static void Main() {
      string[] arr = { "one", "two", "three", "four", "five" };
      string[] arrCloned = arr.Clone() as string[];

      Console.WriteLine(string.Join(",", arr));

      // cloned array
      Console.WriteLine(string.Join(",", arrCloned));
      Console.WriteLine();
   }
}
로그인 후 복사

위 내용은 C#의 Array 클래스는 어떤 인터페이스를 구현합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:tutorialspoint.com
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿