[C#] 10일차 - 67. 인스턴스 메소드와 static 메소드C#/C#200제2021. 1. 30. 15:00
Table of Contents
메소드 :
클래스나 구조체 안에 정의된 함수를 메소드라고 합니다.
보통 대문자로 시작하는것이 관례임
스태틱메소드는 객체를 생성하지 않아도 메소드를 사용할 수있다.
인스턴스 메소드는 인스턴스를 만들곡 인스턴스의 멤버 메소드로 호출해야한다.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace A067_InstanceMethod
{
class Date
{
public int year, month, day;
// static키워드를 갖는 메소드를 스태틱메소드, 클래스 메소드 라고 부른다.
public static bool IsLeapYear(int year)
{
return year % 4 == 0 && (year % 100 != 0 || year % 400 == 0);
}
static int[] days = { 0, 31, 69, 90, 120, 151, 181, 212, 243, 273, 304, 334 };
// 인스턴스 메소드
public int DayOfYear()
{
return days[month - 1] + day + (month > 2 && IsLeapYear(year) ? 1 : 0);
}
}
class InstanceMethod
{
static void Main()
{
Date xmas = new Date();
xmas.year = 2021;
xmas.month = 12;
xmas.day = 25;
Console.WriteLine("xmas : {0}/{1}/{2}는 {3}일 째 되는 날입니다.", xmas.year, xmas.month, xmas.day, xmas.DayOfYear());
if (Date.IsLeapYear(2021) == true)
Console.WriteLine("2021년은 윤년입니다.");
else
Console.WriteLine("2021년은 평년입니다.");
}
}
}
반응형
'C# > C#200제' 카테고리의 다른 글
[C#] 10일차 - 69. 속성(Property) (0) | 2021.01.30 |
---|---|
[C#] 10일차 - 68. 생성자 메소드 (0) | 2021.01.30 |
[C#] 10일차 - 66. 클래스의 멤버, 필드와 상수 (0) | 2021.01.30 |
[C#] 10일차 - 65. 클래스와 구조체 (0) | 2021.01.30 |
[C#] 10일차 - 64. 버블정렬 (0) | 2021.01.30 |
@반나무 :: 반나무_뿌리
3년차 WPF 개발자입니다.
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!