C#은 정적 다형성을 달성하기 위한 두 가지 기술을 제공합니다. -
이름은 같지만 매개변수가 다른 두 개 이상의 메서드, 이것이 바로 C#의 함수 오버로딩입니다.
C#의 함수 오버로드는 매개변수 수와 매개변수의 데이터 유형을 변경하여 구현할 수 있습니다.
숫자의 곱셈을 인쇄하는 함수가 있다고 가정하면 오버로드된 메서드는 이름은 같지만 인수 개수는 다릅니다. -
public static int mulDisplay(int one, int two) { } public static int mulDisplay(int one, int two, int three) { } public static int mulDisplay(int one, int two, int three, int four) { }
다음 예에서는 함수 오버로딩을 구현하는 방법을 보여줍니다. -
라이브 데모
using System; public class Demo { public static int mulDisplay(int one, int two) { return one * two; } public static int mulDisplay(int one, int two, int three) { return one * two * three; } public static int mulDisplay(int one, int two, int three, int four) { return one * two * three * four; } } public class Program { public static void Main() { Console.WriteLine("Multiplication of two numbers: "+Demo.mulDisplay(10, 15)); Console.WriteLine("Multiplication of three numbers: "+Demo.mulDisplay(8, 13, 20)); Console.WriteLine("Multiplication of four numbers: "+Demo.mulDisplay(3, 7, 10, 7)); } }
Multiplication of two numbers: 150 Multiplication of three numbers: 2080 Multiplication of four numbers: 1470
오버로드된 연산자는 특별한 이름, 키워드 연산자 뒤에 정의되는 연산자 기호가 있는 함수입니다.
아래에는 오버로드할 수 있는 연산자와 오버로드할 수 없는 연산자가 나와 있습니다. -
Sr.No | 연산자 및 설명 |
---|---|
1 |
+, - , , ~, ++ , -- 이러한 단항 연산자는 하나의 피연산자를 사용하며 오버로드될 수 있습니다. |
2 |
+, -, *, /, % 이러한 이항 연산자는 하나의 피연산자를 사용하며 오버로드될 수 있습니다. 비교 연산자는 오버로드될 수 있습니다. |
4 | &&, ||조건부 논리 연산자는 직접 오버로드할 수 없습니다. |
+=, -=, *=, /=, %= | 대입 연산자는 오버로드될 수 없습니다. |
위 내용은 C#에서 오버로딩이란 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!