다음을 통해 공유


명명된 인수와 선택적 인수(C# 프로그래밍 가이드)

명명된 인수를 사용하면 인수를 매개 변수 목록 내의 해당 위치가 아닌 해당 이름과 일치시켜 매개 변수에 대한 인수를 지정할 수 있습니다. 선택적 인수를 사용하면 일부 매개 변수에 대한 인수를 생략할 수 있습니다. 두 기법 모두 메서드, 인덱서, 생성자 및 대리자에 사용할 수 있습니다.

명명된 인수와 선택적 인수를 사용하는 경우 매개 변수 목록이 아니라 인수 목록에 표시되는 순서대로 인수가 평가됩니다.

명명된 매개 변수와 선택적 매개 변수를 사용하여 선택한 매개 변수에 대한 인수를 제공할 수 있습니다. 이 기능 덕분에 Microsoft Office 자동화 API와 같은 COM 인터페이스에 대한 호출이 매우 간단해집니다.

명명된 인수

명명된 인수를 사용하면 인수 순서를 호출된 메서드의 매개 변수 목록에 있는 매개 변수 순서와 일치시킬 필요가 없습니다. 각 매개 변수의 인수는 매개 변수 이름으로 지정할 수 있습니다. 예를 들어 함수에 정의된 순서의 위치로 인수를 보내서 주문 세부 정보(예: 판매자 이름, 주문 번호 및 제품 이름)를 호출할 수 있습니다.

PrintOrderDetails("Gift Shop", 31, "Red Mug");

매개 변수의 순서를 기억하지 못하지만 해당 이름을 알고 있는 경우 임의의 순서로 인수를 보낼 수 있습니다.

PrintOrderDetails(orderNum: 31, productName: "Red Mug", sellerName: "Gift Shop");
PrintOrderDetails(productName: "Red Mug", sellerName: "Gift Shop", orderNum: 31);

또한 명명된 인수는 각 인수가 무엇을 나타내는지를 식별하여 코드의 가독성을 향상합니다. 아래 예제 메서드에서 sellerName은 null 또는 공백일 수 없습니다. sellerNameproductName은 모두 문자열 형식이므로, 위치로 인수를 보내는 대신, 명명된 인수를 사용하여 두 코드를 구분하고 코드를 읽는 사람의 혼동을 줄일 수 있습니다.

위치 인수와 함께 사용된 명명된 인수는

  • 그 다음에 위치 인수가 없거나

    PrintOrderDetails("Gift Shop", 31, productName: "Red Mug");
    
  • 올바른 위치에 사용됩니다. 아래 예제에서 orderNum 매개 변수는 올바른 위치에 있지만 명시적으로 명명되지 않습니다.

    PrintOrderDetails(sellerName: "Gift Shop", 31, productName: "Red Mug");
    

잘못된 순서의 명명된 인수 다음에 오는 위치 인수는 유효하지 않습니다.

// This generates CS1738: Named argument specifications must appear after all fixed arguments have been specified.
PrintOrderDetails(productName: "Red Mug", 31, "Gift Shop");

예시

다음 코드는 몇 가지 추가 코드와 함께 이 섹션의 예제를 구현합니다.

class NamedExample
{
    static void Main(string[] args)
    {
        // The method can be called in the normal way, by using positional arguments.
        PrintOrderDetails("Gift Shop", 31, "Red Mug");

        // Named arguments can be supplied for the parameters in any order.
        PrintOrderDetails(orderNum: 31, productName: "Red Mug", sellerName: "Gift Shop");
        PrintOrderDetails(productName: "Red Mug", sellerName: "Gift Shop", orderNum: 31);

        // Named arguments mixed with positional arguments are valid
        // as long as they are used in their correct position.
        PrintOrderDetails("Gift Shop", 31, productName: "Red Mug");
        PrintOrderDetails(sellerName: "Gift Shop", 31, productName: "Red Mug"); 
        PrintOrderDetails("Gift Shop", orderNum: 31, "Red Mug");

        // However, mixed arguments are invalid if used out-of-order.
        // The following statements will cause a compiler error.
        // PrintOrderDetails(productName: "Red Mug", 31, "Gift Shop");
        // PrintOrderDetails(31, sellerName: "Gift Shop", "Red Mug");
        // PrintOrderDetails(31, "Red Mug", sellerName: "Gift Shop");
    }

    static void PrintOrderDetails(string sellerName, int orderNum, string productName)
    {
        if (string.IsNullOrWhiteSpace(sellerName))
        {
            throw new ArgumentException(message: "Seller name cannot be null or empty.", paramName: nameof(sellerName));
        }

        Console.WriteLine($"Seller: {sellerName}, Order #: {orderNum}, Product: {productName}");
    }
}

선택형 인수

메서드, 생성자, 인덱서 또는 대리자의 정의에서 해당 매개 변수를 필수 또는 선택 사항으로 지정할 수 있습니다. 호출 시 모든 필수 매개 변수에 대한 인수를 제공해야 하지만 선택적 매개 변수에 대한 인수는 생략할 수 있습니다.

각 선택적 매개 변수에는 해당 정의의 일부로 기본값이 있습니다. 해당 매개 변수에 대한 인수가 전송되지 않은 경우 기본값이 사용됩니다. 기본값은 다음 유형의 식 중 하나여야 합니다.

  • 상수 식
  • new ValType() 형태의 식. 여기서 ValTypeenum 또는 struct와 같은 값 형식입니다.
  • default(ValType) 형태의 식. 여기서 ValType은 값 형식입니다.

선택적 매개 변수는 매개 변수 목록의 끝에서 모든 필수 매개 변수 다음에 정의됩니다. 호출자가 연속된 선택적 매개 변수 중 하나에 대한 인수를 제공하는 경우 이전의 모든 선택적 매개 변수에 대한 인수를 제공해야 합니다. 인수 목록에서 쉼표로 구분된 간격은 지원되지 않습니다. 예를 들어 다음 코드에서 인스턴스 메서드 ExampleMethod는 필수 매개 변수 하나와 선택적 매개 변수 두 개로 정의됩니다.

public void ExampleMethod(int required, string optionalstr = "default string",
    int optionalint = 10)

다음과 같은 ExampleMethod 호출에서는 세 번째 매개 변수에 대한 인수가 제공되었지만 두 번째 매개 변수에 대한 인수는 제공되지 않았기 때문에 컴파일러 오류가 발생합니다.

//anExample.ExampleMethod(3, ,4);

그러나 세 번째 매개 변수의 이름을 알고 있으면 명명된 인수를 사용하여 작업을 수행할 수 있습니다.

anExample.ExampleMethod(3, optionalint: 4);

IntelliSense는 다음 그림과 같이 대괄호를 사용하여 선택적 매개 변수를 나타냅니다.

ExampleMethod 메서드에 대한 IntelliSense 요약 정보를 보여주는 스크린샷.

참고 항목

.NET OptionalAttribute 클래스를 사용하여 선택적 매개 변수를 선언할 수도 있습니다. OptionalAttribute 매개 변수는 기본값이 필요하지 않습니다. 그러나 기본값을 원할 경우 DefaultParameterValueAttribute 클래스를 살펴봅니다.

예시

다음 예제에서는 ExampleClass에 대한 생성자에 선택 사항인 매개 변수 하나가 있습니다. 인스턴스 메서드 ExampleMethod에는 required라는 필수 매개 변수 하나와 optionalstroptionalint라는 선택적 매개 변수 두 개가 있습니다. Main의 코드는 생성자와 메서드를 호출할 수 있는 여러 방법을 보여 줍니다.

namespace OptionalNamespace
{
    class OptionalExample
    {
        static void Main(string[] args)
        {
            // Instance anExample does not send an argument for the constructor's
            // optional parameter.
            ExampleClass anExample = new ExampleClass();
            anExample.ExampleMethod(1, "One", 1);
            anExample.ExampleMethod(2, "Two");
            anExample.ExampleMethod(3);

            // Instance anotherExample sends an argument for the constructor's
            // optional parameter.
            ExampleClass anotherExample = new ExampleClass("Provided name");
            anotherExample.ExampleMethod(1, "One", 1);
            anotherExample.ExampleMethod(2, "Two");
            anotherExample.ExampleMethod(3);

            // The following statements produce compiler errors.

            // An argument must be supplied for the first parameter, and it
            // must be an integer.
            //anExample.ExampleMethod("One", 1);
            //anExample.ExampleMethod();

            // You cannot leave a gap in the provided arguments.
            //anExample.ExampleMethod(3, ,4);
            //anExample.ExampleMethod(3, 4);

            // You can use a named parameter to make the previous
            // statement work.
            anExample.ExampleMethod(3, optionalint: 4);
        }
    }

    class ExampleClass
    {
        private string _name;

        // Because the parameter for the constructor, name, has a default
        // value assigned to it, it is optional.
        public ExampleClass(string name = "Default name")
        {
            _name = name;
        }

        // The first parameter, required, has no default value assigned
        // to it. Therefore, it is not optional. Both optionalstr and
        // optionalint have default values assigned to them. They are optional.
        public void ExampleMethod(int required, string optionalstr = "default string",
            int optionalint = 10)
        {
            Console.WriteLine(
                $"{_name}: {required}, {optionalstr}, and {optionalint}.");
        }
    }

    // The output from this example is the following:
    // Default name: 1, One, and 1.
    // Default name: 2, Two, and 10.
    // Default name: 3, default string, and 10.
    // Provided name: 1, One, and 1.
    // Provided name: 2, Two, and 10.
    // Provided name: 3, default string, and 10.
    // Default name: 3, default string, and 4.
}

위의 코드는 선택적 매개 변수가 올바르게 적용되지 않는 몇 가지 예제를 보여 줍니다. 첫 번째 예제는 필수 항목인 첫 번째 매개 변수에 인수를 제공해야 함을 보여 줍니다.

호출자 정보 특성

CallerFilePathAttribute, CallerLineNumberAttribute, CallerMemberNameAttributeCallerArgumentExpressionAttribute 같은 호출자 정보 특성은 메서드 호출자에 대한 정보를 가져오는 데 사용됩니다. 이러한 특성은 디버깅 중이거나 메서드 호출에 대한 정보를 기록해야 할 때 특히 유용합니다.

이러한 특성은 컴파일러에서 제공하는 기본값을 사용하는 선택적 매개 변수입니다. 호출자는 이러한 매개 변수에 대한 값을 명시적으로 제공하지 않아야 합니다.

COM 인터페이스

동적 개체에 대한 지원과 더불어 명명된 인수와 선택적 인수는 Office 자동화 API와 같은 COM API와의 상호 운용성을 크게 향상합니다.

예를 들어 AutoFormatMicrosoft Office ExcelRange 인터페이스의 메서드에는 모두 선택 사항인 매개 변수 7개가 있습니다. 해당 매개 변수는 다음 그림에 표시됩니다.

AutoFormat 메서드에 대한 IntelliSense 요약 정보를 보여주는 스크린샷

그러나 명명된 인수와 선택적 인수를 사용하면 AutoFormat에 대한 호출을 크게 간소화할 수 있습니다. 명명된 인수와 선택적 인수를 사용하면 매개 변수의 기본값을 변경하지 않으려는 경우 선택적 매개 변수에 대한 인수를 생략할 수 있습니다. 다음 호출에서는 7개 매개 변수 중 하나에 대한 값만 지정되었습니다.

var excelApp = new Microsoft.Office.Interop.Excel.Application();
excelApp.Workbooks.Add();
excelApp.Visible = true;

var myFormat =
    Microsoft.Office.Interop.Excel.XlRangeAutoFormat.xlRangeAutoFormatAccounting1;

excelApp.Range["A1", "B4"].AutoFormat( Format: myFormat );

자세한 내용 및 예제는 Office 프로그래밍에 명명된 인수와 선택적 인수를 사용하는 방법C# 기능을 사용하여 Office interop 개체에 액세스하는 방법을 참조하세요.

오버로드 해결

명명된 인수 및 선택적 인수를 사용하면 다음과 같은 방법으로 오버로드 확인에 영향을 줍니다.

  • 메서드, 인덱서 또는 생성자는 해당 매개 변수가 각각 선택 사항이거나 이름 또는 위치로 호출하는 문의 단일 인수에 해당하고 이 인수를 매개 변수의 형식으로 변환할 수 있는 경우 실행 후보가 됩니다.
  • 둘 이상의 인증서가 있으면 기본 설정 변환에 대한 오버로드 확인 규칙이 명시적으로 지정된 인수에 적용됩니다. 선택적 매개 변수에 대해 생략된 인수는 무시됩니다.
  • 두 후보가 똑같이 정상이라고 판단되는 경우 기본적으로 호출에서 인수가 생략된 선택적 매개 변수가 없는 후보가 설정됩니다. 오버로드 확인은 일반적으로 매개 변수가 더 적은 후보를 선호합니다.

C# 언어 사양

자세한 내용은 C# 언어 사양을 참조하세요. 언어 사양은 C# 구문 및 사용법에 대 한 신뢰할 수 있는 소스 됩니다.