객체 지향 프로그래밍에서 생성자는 매우 중요한 역할을 합니다. 다음 사항을 통해 C#에서 생성자의 역할을 이해해 보겠습니다.
구문:
public class Student() { //constructor public Student() { //code } }
여기서 public Student()는 어떠한 반환타입도 없고 void도 없는 메소드이며 이름은 클래스명과 동일합니다. 즉, 'Student'입니다. 따라서 이 메소드는 이 클래스의 생성자입니다.
다음을 사용하여 이 클래스의 객체를 생성하는 경우:
Student obj = new Student();
그러면 생성자 내부의 코드가 실행됩니다.
1. 생성자는 새 객체의 데이터 멤버를 초기화합니다. 새 객체에 메모리가 할당된 직후 'new' 연산자에 의해 호출됩니다.
2. 명시적 생성자(사용자가 정의한 생성자)는 매개변수가 없거나 매개변수화될 수 있습니다. 매개변수화되면 생성자에 전달된 값을 클래스의 데이터 멤버에 할당할 수 있습니다.
3. 암시적 생성자는 해당 클래스의 인스턴스를 여러 개 생성하더라도 해당 클래스의 변수를 동일한 값으로 초기화합니다.
예:
코드:
using System; public class ConstructorDemo { public int num = 10; public static void Main() { ConstructorDemo obj1 = new ConstructorDemo(); ConstructorDemo obj2 = new ConstructorDemo(); ConstructorDemo obj3 = new ConstructorDemo(); Console.WriteLine("obj1.num = "+obj1.num+"\nobj2.num = "+obj2.num +"\nobj3.num = "+obj3.num); } }
출력:
위 프로그램의 그림 표현:
4. 매개변수가 있는 명시적 생성자를 사용하면 해당 클래스의 인스턴스를 생성할 때마다 해당 클래스의 변수를 다른 값으로 초기화할 수 있습니다.
예:
코드:
using System; public class ConstructorDemo { public int num; //explicit constructor public ConstructorDemo(int num) { this.num = num; } public static void Main() { ConstructorDemo obj1 = new ConstructorDemo(10); ConstructorDemo obj2 = new ConstructorDemo(20); ConstructorDemo obj3 = new ConstructorDemo(30); Console.WriteLine("obj1.num = "+obj1.num+"\nobj2.num = "+obj2.num +"\nobj3.num = "+obj3.num); } }
출력:
위 프로그램의 그림 표현:
C#은 다섯 가지 유형의 생성자를 제공합니다. 그 내용은 다음과 같습니다.
예:
코드:
using System; public class DefaultConstructor { public int num; public string str; } public class Demo { public static void Main() { DefaultConstructor obj = new DefaultConstructor(); Console.WriteLine("obj.num = "+obj.num+"\nobj.str = "+obj.str); } }
출력:
최소 하나의 매개변수가 있는 생성자를 매개변수화된 생성자라고 합니다. 클래스의 인스턴스를 생성하는 동안 생성자에 대한 매개변수를 전달할 수 있습니다. 이를 통해 클래스의 각 인스턴스를 서로 다른 값으로 초기화할 수 있습니다.
예:
코드:
using System; public class ParameterizedConstructor { public int num; public string str; //parameterized constructor public ParameterizedConstructor(int num, string str) { this.num = num; this.str = str; } } public class Demo { public static void Main() { //passing values to constructor while creating instance ParameterizedConstructor obj = new ParameterizedConstructor(50, "constructor"); Console.WriteLine("obj.num = "+obj.num+"\nobj.str = "+obj.str); } }
출력:
동일한 클래스의 객체를 매개변수로 받는 매개변수화된 생성자입니다. 기존 개체의 값(매개 변수로 전달됨)을 생성자가 인스턴스화한 새로 생성된 개체에 복사합니다. 한 개체의 데이터를 다른 개체로 복사한다고 할 수 있습니다.
예:
코드:
using System; public class CopyConstructor { public int num; public CopyConstructor(int num) { this.num = num; } //copy constructor public CopyConstructor(CopyConstructor obj) { num = obj.num; } } public class Demo { public static void Main() { CopyConstructor obj1 = new CopyConstructor(50); //passing same class's object as parameter CopyConstructor obj2 = new CopyConstructor(obj1); Console.WriteLine("Original object:"); Console.WriteLine("obj1.num = "+obj1.num); Console.WriteLine("\nCopied object:"); Console.WriteLine("obj2.num = "+obj2.num); } }
출력:
예:
코드:
using System; public class StaticConstructor { //static constructor static StaticConstructor() { Console.WriteLine("Static constructor executed"); } public static void Display() { Console.WriteLine("\nDisplay method executed"); } } public class Demo { public static void Main() { StaticConstructor.Display(); } }
출력:
A constructor created with a private specifier is called a private constructor. We cannot create an instance of the class if it contains only a private constructor, and it does not allow other classes to derive from this class. Used in class that contains only static members.
Example:
Code:
using System; public class PrivateConstructor { public static int num = 100; //private constructor private PrivateConstructor() { } } public class Demo { public static void Main() { //PrivateConstructor obj = new PrivateConstructor(); //Error Console.WriteLine("num = "+PrivateConstructor.num); } }
Output:
If we define any type of constructor in a class, then there will not be any implicit constructor in the class provided by the compiler. Like methods, parameterized constructors can also be overloaded with different numbers of parameters. Constructors defined implicitly by the compiler are always public.
This is a guide to Constructor in C#. Here we discuss the types of Constructor in C# and its Work along with Code Implementation and Output. You can also go through our other suggested articles to learn more –
위 내용은 C#의 생성자의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!