사용자 정의 유형의 배열
using System; namespace ConsoleApplication4 { class Program { static void Main(string[] args) { Person[] myPersons = new Person[2]; myPersons[0] = new Person("Lilian", "Chen"); myPersons[1] = new Person("1", "2"); Console.WriteLine(myPersons[0].ToString()); Console.WriteLine(myPersons[1].ToString()); // 对自定义类型使用数组初始化器 Person[] persons = new Person[] {new Person("a", "b"), new Person("c", "d")}; Console.WriteLine(persons[1].ToString()); Console.ReadLine(); } } public class Person { public Person() { } public Person(string firstName, string lastName) { this.FirstName = firstName; LastName = lastName; } public string FirstName { get; set; } public string LastName { get; set; } public override string ToString() { return String.Format("{0} {1}", FirstName, LastName); } } }
참고: 배열의 요소가 참조 유형인 경우 각 배열 요소에 대해 메모리를 할당해야 합니다.
myPersons는 관리되는 힙에 저장된 Person 요소의 배열을 참조하는 스택에 저장된 변수입니다. 배열의 각 항목은 Person 개체를 참조합니다.
배열 만들기
[]를 사용하여 배열을 선언하는 것은 C#에서 Array 클래스를 사용하기 위한 표기법입니다. 추상 기반에서 파생된 새 개체입니다. 클래스 배열이 백그라운드에서 생성됩니다. 이를 통해 각 C# 배열에 대해 Array 클래스에서 정의한 메서드와 속성을 사용할 수 있습니다.
Array 클래스는 추상 클래스이므로 생성자를 사용하여 배열을 만들 수 없습니다. 그러나 C# 구문을 사용하여 배열 인스턴스를 만드는 것 외에도 정적 메서드 CreateInstance()를 사용하여 배열을 만들 수도 있습니다(요소 유형을 미리 알 수 없는 경우 사용할 수 있음).
using System; namespace ConsoleApplication5 { class Program { static void Main(string[] args) { // CreateInstance 方法的第一个参数是元素的类型,第二个参数是数组的大小 Array intArray = Array.CreateInstance(typeof(int), 5); for (int i = 0; i < intArray.Length; i++) { // 使用 SetValue() 方法设置值 intArray.SetValue(i, i); } for (int i = 0; i < intArray.Length; i++) { // 使用 GetValue() 方法读取值 Console.WriteLine(intArray.GetValue(i)); Console.ReadLine(); } // 将已经创建的数组强制转换成声明为 int[] 的数组 int[] intArray1 = (int[])intArray; Console.WriteLine(intArray1.Length); } } }
다차원 배열과 0 기반이 아닌 배열을 생성하려면 CreateInstance() 메서드를 사용하세요.
using System; namespace ConsoleApplication4 { class Program { static void Main(string[] args) { int[] lengths = { 2, 3 }; int[] lowerBounds = { 1, 10 }; Array racers = Array.CreateInstance(typeof(Person), lengths, lowerBounds); racers.SetValue(new Person("a", "b"), 1, 10); racers.SetValue(new Person("c", "d"), 1, 11); racers.SetValue(new Person("e", "f"), 1, 12); racers.SetValue(new Person("g", "h"), 2, 10); racers.SetValue(new Person("i", "j"), 2, 11); racers.SetValue(new Person("k", "l"), 2, 12); Person[,] racers1 = (Person[,])racers; Person first = racers1[1, 10]; } } public class Person { public Person() { } public Person(string firstName, string lastName) { this.FirstName = firstName; LastName = lastName; } public string FirstName { get; set; } public string LastName { get; set; } public override string ToString() { return String.Format("{0} {1}", FirstName, LastName); } } }
배열 복사
1) 배열의 요소가 값 유형인 경우 모든 값이 복사됩니다
int[] intArray1 = { 1, 2 }; // 如果删掉 “(int[])” 会有 Error “Cannot implicitly convert type ‘object’ to 'int[]'” int[] intArray2 = (int[]) intArray1.Clone
배열에 참조 유형이 포함된 경우 요소는 복사되지 않지만, 참조만 복사됩니다
beatlesClone을 수정하면 요소의 속성이 비틀즈의 해당 개체를 변경합니다.
Person[] beatles = { new Person("John", "Lennon"), new Person("Paul", "McCartney") }; Person[] beatlesClone = (Person[])beatles.Clone();
C# 사용자 정의 유형 배열 및 배열 클래스와 관련된 더 많은 기사를 보려면 PHP 중국어 웹사이트를 주목하세요!