목록2024/08 (3)
옆히
this 메모
this는 현재의 인스턴스를 가리키는 키워드다 class parent{ public parent() { Console.WriteLine(this.GetType()); }}class child : parent{ public child() : base() //생성자 체이닝(constructor chaining) { } public child(string msg) { var test = new parent(); }}class Program{ static void Main() { var test1 = new child(); //child 출력 var test2 = new child("부모 클래스 생성")..
개인공부용1/etc
2024. 8. 29. 23:49
[백준]9095 - 1, 2, 3 더하기
보호되어 있는 글입니다.
짬통/백준
2024. 8. 4. 10:19