생성자
- 최초 작성일: 2021년 3월 21일(월)
목차
[TOC]
내용
using System;
namespace Constructor
{
class Program
{
class Knight
{
public int hp;
public int attack;
public Knight()
{
hp = 100;
attack = 10;
Console.WriteLine("생성자 호출!");
}
public Knight(int hp) : this()
{
this.hp = hp;
Console.WriteLine("int 생성자 호출!");
}
public Knight(int hp, int attack)
{
this.hp = hp;
this.attack = attack;
Console.WriteLine("int, int 생성자 호출!");
}
}
static void Main(string[] args)
{
Knight knight = new Knight(50, 5);
}
}
}