상속(Inheritance) - 클래스는 다른 클래스로부터 유산을 물려받을 수 있다. 클래스에게 있는 유산이란 필드나 메서드, 프로퍼티 같은 멤버들을 말한다. 객체 지향 프로그래밍에서는 물려받는 클래스(파생 클래스)가 유산을 물려줄 클래스를 지정한다.
형식
class 기반 클래스
{
// 멤버 선언
}
class 파생 클래스 : 기반 클래스
{
// 아무 멤버를 선언하지 않아도 기반 클래스의 모든 것을 물려받아 갖게 된다.
// private로 선언된 멤버는 제외!
}
또한 파생 클래스는 기반 클래스로부터 물려받은 멤버들 외에 고유의 메서드와 멤버를 추가해서 사용하게 된다. 이것은 파생 클래스가 기반 클래스 위에 새로운 멤버를 "얹어" 만든 것이기 때문이다.
파생 클래스의 생성 과정을 통해서도 확일 할 수 있는데, 파생 클래스는 객체를 생성할 때 내부적으로 기반 클래스의 생성자를 호출한 후에 자신의 생성자를 호출하고, 객체가 소멸될 때는 반대의 순서로 (파생 클래스 -> 기반 클래스) 종료자를 호출한다.
예제
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
using System;
using static System.Console;
using System.Collections;
using System.Linq;
namespace AS
{
class MyClass
{
public MyClass()
{
WriteLine("MyClass()");
}
~MyClass()
{
WriteLine("~MyClass()");
}
}
class MyClass2 : MyClass
{
public MyClass2()
{
WriteLine("MyClass2()");
}
~MyClass2()
{
WriteLine("~MyClass2()");
}
}
class MainApp
{
public static void Main(string[] args)
{
MyClass2 myClass2 = new MyClass2(); // 인스턴스 생성
}
}
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4f; text-decoration:none">Colored by Color Scripter
|
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none; color:white">cs |
기반 클래스의 생성자 -> 파생 클래스의 생성자 -> 파생 클래스의 종료자-> 기반 클래스의 종료 자순으로 호출이 이루어진다.
base 키워드
만약 기반 클래스의 생성자가 매개 변수를 입력받도록 선언되어 있다면 파생 클래스의 인스턴스를 생성할 때 호출되는 기반 클래스의 생성자에게는 base 키워드를 사용해 매개 변수를 전달해 줄 수 있다. this 키워드가 자기 자신을 가리켰다면, base 키워드는 기반 클래스를 가리킨다. this 키워드를 통해 자기 자신의 멤버의 접근할 수 있었던 것처럼, base 키워드를 통해 기반 클래스의 멤버에 접근할 수 있다.
class Base
{
public void BaseMethod()
{ }
}
class Derived : Base
{
public void DerivedMethod()
{
base.BaseMethod(); // base 키워드를 통해 기반 클래에 접근 가능.
}
}
예제2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
using System;
using static System.Console;
using System.Collections;
using System.Linq;
namespace AS
{
class Base
{
protected string Name;
public Base(string Name)
{
this.Name = Name;
WriteLine($"{this.Name}.Base()");
}
~Base()
{
WriteLine($"{this.Name}.~Base()");
}
public void BaseMethod()
{
WriteLine($"{this.Name}.BaseMethod()");
}
}
class Derived : Base
{
public Derived(string Name) : base(Name)
{
WriteLine($"{this.Name}.Derived()");
}
~Derived()
{
WriteLine($"{this.Name}.~Derived()");
}
public void DerivedMethod()
{
WriteLine($"{this.Name}.DerivedMethod()");
}
}
class MainApp
{
public static void Main(string[] args)
{
Base a = new Base("a");
a.BaseMethod();
Derived b = new Derived("b");
b.BaseMethod();
b.BaseMethod();
}
}
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4f; text-decoration:none">Colored by Color Scripter
|
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none; color:white">cs |
※ 혼자 공부하며 정리하는 블로그입니다.
'Programming Language > C#' 카테고리의 다른 글
[C#] 중첩 클래스 (0) | 2019.05.18 |
---|---|
[C#] 오버라이딩 (0) | 2019.05.18 |
[C#] 접근 한정자 (0) | 2019.05.18 |
[C#] 정적 필드와 메소드 (0) | 2019.05.18 |
[C#] 생성자와 종료자 (0) | 2019.05.18 |