Microsoft MVP성태의 닷넷 이야기
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일
 

(시리즈 글이 4개 있습니다.)
.NET Framework: 784. C# - 제네릭 인자를 가진 타입을 생성하는 방법
; https://www.sysnet.pe.kr/2/0/11582

.NET Framework: 787. object로 형변환된 인스턴스를 원래의 타입 인자로 제네릭 메서드를 호출하는 방법
; https://www.sysnet.pe.kr/2/0/11589

닷넷: 2145. C# - 제네릭의 형식 매개변수에 속한 (매개변수를 가진) 생성자를 호출하는 방법
; https://www.sysnet.pe.kr/2/0/13417

닷넷: 2251. C# - 제네릭 인자를 가진 타입을 생성하는 방법 - 두 번째 이야기
; https://www.sysnet.pe.kr/2/0/13610




C# - 제네릭의 형식 매개변수에 속한 (매개변수를 가진) 생성자를 호출하는 방법

아래와 같은 질문이 있군요. ^^

[C# Q&A] 제너릭 T를 인스턴스하는 방법이 뭘까요?
; https://forum.dotnetdev.kr/t/c-q-a-t/8327

제네릭의 경우, 형식 매개변수의 타입에 해당하는 인스턴스를 생성하기 위해서는 new() 제약을 사용할 수 있습니다.

namespace ConsoleApp1;

internal class Program
{
    static void Main(string[] args)
    {
        var pg = Class1<Program>.GetInstance();
        Console.WriteLine(pg); // 출력 결과: ConsoleApp1.Program
    }
}

public class Class1<T> where T: new()
{
    public static T GetInstance()
    {
        return new T();
    }
}

위의 경우, 매개변수를 갖지 않는 "기본 생성자"를 호출할 수 있도록 하는데요, 그렇다면 만약 매개변수가 있는 생성자의 호출은 어떻게 할 수 있을까요?

일단, 공식적으로는 제네릭에서 매개변수를 가진 생성자는 호출할 수 없습니다. 단지, 그것을 Reflection을 통해 우회할 수 있는데요, 예를 들어, int와 string을 받는 생성자는 다음과 같이 호출할 수 있습니다.

using System.Reflection;

namespace ConsoleApp1;

internal class Program
{
    static void Main(string[] args)
    {
        {
            var pg = Class1<Program>.GetInstance(10, "홍길동");
            Console.WriteLine(pg == null ? "(null)" : pg); // 출력 결과: (null)
        }

        {
            var pg = Class1<Person>.GetInstance(10, "홍길동");
            Console.WriteLine(pg == null ? "(null)" : pg); //  출력 결과: Person { age = 10, name = 홍길동 }
        }
    }
}

public record class Person(int age, string name)
{
    public Person() : this(0, "") { }
}

public class Class1<T> where T : class
{
    public static T? GetInstance(int age, string name)
    {
        Type t = typeof(T);

        ConstructorInfo? ctor = t.GetConstructor(new Type[] { typeof(int), typeof(string) });
        if (ctor == null)
        {
            return null;
        }

        return ctor.Invoke(new object[] { age, name }) as T;
    }
}

이 정도의 코드면, 그래도 문법적인 지원이 없는 것에 크게 아쉽지는 않을 것입니다. ^^




그나저나, AOT(Ahead-of-Time) 컴파일 기능이 많이 좋아졌나 봅니다. 예전에는 위와 같은 수준의 Reflection을 사용한 코드는 실패했던 것 같은데, 이제는 잘 동작합니다. 실제로 위의 코드를 .NET MAUI 앱으로 제작해 Android App에 AOT를 켠 Release 모드로 배포/실행이 되었습니다.




[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]







[최초 등록일: ]
[최종 수정일: 9/19/2023]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 




... [46]  47  48  49  50  51  52  53  54  55  56  57  58  59  60  ...
NoWriterDateCnt.TitleFile(s)
12664정성태6/9/202111001오류 유형: 723. COM+ PIA 참조 시 "This operation failed because the QueryInterface call on the COM component" 오류
12663정성태6/9/202112972.NET Framework: 1065. Windows Forms - 속성 창의 디자인 설정 지원: 문자열 목록 내에서 항목을 선택하는 TypeConverter 제작파일 다운로드1
12662정성태6/8/202111470.NET Framework: 1064. C# COM 개체를 PIA(Primary Interop Assembly)로써 "Embed Interop Types" 참조하는 방법파일 다운로드1
12661정성태6/4/202123118.NET Framework: 1063. C# - MQTT를 이용한 클라이언트/서버(Broker) 통신 예제 [4]파일 다운로드1
12660정성태6/3/202113811.NET Framework: 1062. Windows Forms - 폼 내에서 발생하는 마우스 이벤트를 자식 컨트롤 영역에 상관없이 수신하는 방법 [1]파일 다운로드1
12659정성태6/2/202115020Linux: 40. 우분투 설치 후 MBR 디스크 드라이브 여유 공간이 인식되지 않은 경우 - Logical Volume Management
12658정성태6/2/202112370Windows: 194. Microsoft Store에 있는 구글의 공식 Youtube App
12657정성태6/2/202113622Windows: 193. 윈도우 패키지 관리자 - winget 설치
12656정성태6/1/202111688.NET Framework: 1061. 서버 유형의 COM+에 적용할 수 없는 Server GC
12655정성태6/1/202110771오류 유형: 722. windbg/sos - savemodule - Fail to read memory
12654정성태5/31/202110840오류 유형: 721. Hyper-V - Saved 상태의 VM을 시작 시 오류 발생
12653정성태5/31/202113989.NET Framework: 1060. 닷넷 GC에 새롭게 구현되는 DPAD(Dynamic Promotion And Demotion for GC)
12652정성태5/31/202111968VS.NET IDE: 164. Visual Studio - Web Deploy로 Publish 시 암호창이 매번 뜨는 문제
12651정성태5/31/202111899오류 유형: 720. PostgreSQL - ERROR: 22P02: malformed array literal: "..."
12650정성태5/17/202111078기타: 82. OpenTabletDriver의 버튼에 더블 클릭을 매핑 및 게임에서의 지원 방법
12649정성태5/16/202112910.NET Framework: 1059. 세대 별 GC(Garbage Collection) 방식에서 Card table의 사용 의미 [1]
12648정성태5/16/202111557사물인터넷: 66. PC -> FTDI -> NodeMCU v1 ESP8266 기기를 UART 핀을 연결해 직렬 통신하는 방법파일 다운로드1
12647정성태5/15/202112650.NET Framework: 1058. C# - C++과의 연동을 위한 구조체의 fixed 배열 필드 사용파일 다운로드1
12646정성태5/15/202111577사물인터넷: 65. C# - Arduino IDE의 Serial Monitor 기능 구현파일 다운로드1
12645정성태5/14/202111485사물인터넷: 64. NodeMCU v1 ESP8266 - LittleFS를 이용한 와이파이 접속 정보 업데이트파일 다운로드1
12644정성태5/14/202112412오류 유형: 719. 윈도우 - 제어판의 "프로그램 및 기능" / "Windows 기능 켜기/끄기" 오류 0x800736B3
12643정성태5/14/202111930오류 유형: 718. 서버 유형의 COM+ 사용 시 0x80080005(Server execution failed) 오류 발생
12642정성태5/14/202113322오류 유형: 717. The 'Microsoft.ACE.OLEDB.12.0' provider is not registered on the local machine.
12641정성태5/13/202112787디버깅 기술: 179. 윈도우용 .NET Core 3 이상에서 Windbg의 sos 사용법
12640정성태5/13/202115792오류 유형: 716. RDP 연결 - Because of a protocol error (code: 0x112f), the remote session will be disconnected. [1]
12639정성태5/12/202112387오류 유형: 715. Arduino: Open Serial Monitor - The module '...\detection.node' was compiled against a different Node.js version using NODE_MODULE_VERSION
... [46]  47  48  49  50  51  52  53  54  55  56  57  58  59  60  ...