[c#] this Keyword
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
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication3
{
class GrandParent
{
public static string name = "Kim";
public static int age = 60;
//디폴트 생성자가~ 파라메터가 하나 있는 생성자를 호출하기위해 this 키워드를 사용한다.
public GrandParent() : this(name)
{
Console.WriteLine("GrandParent() 생성자 실행");
}
public GrandParent(string name) : this(name, age)
{
Console.WriteLine("GrandParent(string name) 생성자 실행");
}
public GrandParent(string name, int age)
{
Console.WriteLine("randParent(string name, int age) 생성자 실행");
}
}
class Program
{
static void Main(string[] args)
{
GrandParent gp = new GrandParent();
Console.ReadLine();
}
}
}
| cs |
댓글
댓글 쓰기