728x90
728x90
람다식(Ramdba) - 익명 메소드 - 메소드와 동일하게 입력(파라미터), 출력(리턴) - 문법 : (매개변수) => { 함수 내부(식) }; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace _120_Ramdba { delegate void dPrint(string str); delegate int dAdd(int a); class Program { static public void CallPrint(string str) { Console.WriteLine(str); } static public int CallAdd(int a)..
델리게이트(delegate) - 대리자(메소드 참조형) - 메소드의 틀을 만들어 소통 - 클래스간 통신에 활용 - 문법 : delegate 리턴형 식별자(파라미터); using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace _116_delegate { delegate int DelegateFunc(int a); class Program { static int Add(int a) { Console.WriteLine("Add"); return a + a; } static void Main(string[] args) { DelegateFunc ..
try ~ catch 키워드 - 프로그램의 안정성 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace _111_try_catch { class Program { static void Main(string[] args) { int inputNum = 0; bool isCorrect = false; while(!isCorrect) { Console.WriteLine("입력문자 : "); string readStr = Console.ReadLine(); try { inputNum = int.Parse(readStr); isCorrect =..
일반화(Generic) - 클래스, 함수 일반화 가능 - 키워드 - Boxing, UnBoxing을 줄일 수 있음 - 불필요한 오버로딩을 줄일 수 있음 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace _103_GenericFunc { class Program { static void GenericPrint(T data) { Console.WriteLine("data : {0}", data); } static void GenericPrint(T[] arrData) { for(int i = 0; i < arrData.Length; i..
컬렉션(Collection) - 데이터 저장, 검색, 기타 데이터 처리 특화 - 자료구조(Data Structure) - 선언 방법, 참조 방법, 중요 메소드 ArrayList - 배열과 비슷 - 크기가 유동적(동적) using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace _095_ArrayList { class Program { static void Main(string[] args) { ArrayList arrList = new ArrayList(); //Add 함수는 어떤 데이터형도 다..
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CheckPoint04 { class Army { protected int _HP; protected int _MP; protected int _Speed; protected int _Attack; public virtual void Run() { Console.Write("{0}의 속도로", _Speed); } public virtual void Attack() { Console.WriteLine(); if (this is Healer) { Console.Write("[마법 공격력..