class Book{
string title;
decimal ISBN13;
string Content;
string Author;
int pageCount;
}
Book guilliver = new Book();
단순히 속성만 있는 클래스를 정의하고 생성하는 코드.
class Book{
string title;
decimal ISBN13;
string Content;
string Author;
int pageCount;
public void Open() {
Console.WriteLine("Book is opened");
}
public void Close() {
Console.WriteLine("Book is closed");
}
}
메서드 추가, 메서드를 사용하는 이유는 코드 중복을 제거할 수 있기 때문, 또한 재사용도 가능.
namespace Test
{
class Csharp_Class
{
static void Main(string[] args)
{
Console.WriteLine("person 객체 생성 전");
Person person = new Person();
Console.WriteLine("person 객체 생성 후");
}
}
class Person
{
string name;
public Person()
{
name = "홍길동";
Console.WriteLine("생성자 호출");
}
}
}
----------------------------------------------------------
출력
person 객체 생성 전
생성자 호출
person 객체 생성 후