Section 41.5: 다중 인터페이스 구현 (implement) 하기
public interface IAnimal {
string Name {
get;
set;
}
}
public interface INoiseMaker {
string MakeNoise();
}
public class Cat: IAnimal, INoiseMaker {
public Cat() {
Name = "Cat";
}
public string Name {
get;
set;
}
public string MakeNoise() {
return "Nyan";
}
}
본 문서는 C# Notes for Professionals (라이센스:CC-BY-SA) 를 한글로 번역한 문서입니다. 번역상 오류가 있을 수 있으므로 정확한 내용은 원본 문서를 참고하세요.
[출처] https://books.goalkicker.com/CSharpBook/
반응형
'번역 > C# Notes for Professionals' 카테고리의 다른 글
41.7: 명시적 구현 (Explicit Implementation) 을 이용해 멤버를 숨김 처리하기 (0) | 2022.04.26 |
---|---|
41.6: 인터페이스 사용 목적 (0) | 2022.04.23 |
41.4: 인터페이스 구현 예제로써의 IComparable<T> (0) | 2022.04.21 |
41.3: 인터페이스 관련 기본 사항들 (0) | 2022.04.21 |
41.2: 명시적인 인터페이스 구현 (implementation) 방법 (0) | 2022.04.11 |