기본 클래스(new,override)를 다시 쓰 고 숨 기 는 방법
public class Father
{
public void Write() {
Console.WriteLine(" ");
}
}
public class Mother
{
public virtual void Write()
{
Console.WriteLine(" ");
}
}
public class Boy : Father
{
public new void Write()
{
Console.WriteLine(" ");
}
}
public class Girl : Mother
{
public override void Write()
{
Console.WriteLine(" ");
}
}
static void Main(string[] args)
{
Father father = new Boy();
father.Write();
Boy boy = new Boy();
boy.Write();
Mother mother = new Mother();
mother.Write();
Girl girl = new Girl();
girl.Write();
Console.ReadLine();
}
출력:부자 모녀
부모 호출 방법 추가:
public class Boy : Father
{
public new void Write()
{
base.Write();
Console.WriteLine(" ");
}
}
public class Girl : Mother
{
public override void Write()
{
base.Write();
Console.WriteLine(" ");
}
}
출력:아버지 와 아들 과 어머니 와 딸
이 를 통 해 알 수 있 듯 이 프로그램 실행 결과 에 있어 서 new 와 override 는 같다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
NOIP 시 뮬 레이 션 문제 qu ming zi [욕심] [시 뮬 레이 션] [재 귀]T1: 제목: 주어진 작업 과 작업 의 수 는 특정한 데이터 구조 에 대해 이 작업 을 하고 추출 작업 을 위해 추출 한 수량 이 이 데이터 구조 에서 추출 한 수량 과 일치 하 는 지 판단 합 니 다.분석: 마찬가...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.