>  기사  >  백엔드 개발  >  C#에서 메서드를 오버로드하는 다양한 방법은 무엇입니까?

C#에서 메서드를 오버로드하는 다양한 방법은 무엇입니까?

王林
王林앞으로
2023-09-10 15:13:05641검색

C# 中重载方法有哪些不同的方式?

메소드를 오버로딩하는 다양한 방법은 다음과 같습니다. -

The datatypes of parameters are different
The number of parameters are different

아래에는 다양한 데이터 유형의 매개변수에 대한 예가 나와 있습니다. -

void print(int i) {
   Console.WriteLine("Printing int: {0}", i );
}

void print(double f) {
   Console.WriteLine("Printing float: {0}" , f);
}

void print(string s) {
   Console.WriteLine("Printing string: {0}", s);
}

아래에는 다양한 수의 매개변수가 나열되어 있습니다. -

// two parameters
public static int mulDisplay(int one, int two) {
   return one * two;
}

// three parameters
public static int mulDisplay(int one, int two, int three) {
   return one * two * three;
}

// four parameters
public static int mulDisplay(int one, int two, int three, int four) {
   return one * two * three * four;
}

위 내용은 C#에서 메서드를 오버로드하는 다양한 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
이 기사는 tutorialspoint.com에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제