본문 바로가기

C#/수업내용38

[ C# 8일차 ] Generic 일반화 메서드 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Collections; namespace Study09 { class App { //생성자 public App() { Console.WriteLine("App"); int[] arr0 = { 1, 2, 3 }; int[] arr1 = new int[3]; string[] arr2 = { "t", "r", "e" }; string[] arr3 = new string[3]; CopyArray(arr0, arr1); CopyArray(arr2, arr3); Hero[] arr4 = .. 2023. 1. 10.
[ C# 8일차 ] Struct 구조체 App Class using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Collections; namespace Study09 { class App { //생성자 public App() { Point3D point3d; Console.WriteLine("App"); //Console.WriteLine(point3d); point3d.x = 10; point3d.y = 10; point3d.z = 10; Console.WriteLine("{0} {1} {2}",point3d.x, point3d.y, point3d.z); Point3.. 2023. 1. 10.
[ C# 8일차 ] Collections_Hashtable 키와 값을 같이 저장! using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Collections; namespace Study09 { class App { //생성자 public App() { Console.WriteLine("App"); //컬렉션 인스턴스 생성 Hashtable table = new Hashtable(); table.Add(100, "홍길동"); //table.Add(100, "임꺽정"); //키 중복 불가. 에러 table.Add(102, new Hero()); table.Add("aaa", 1000); t.. 2023. 1. 10.
[ C# 8일차 ] Collections_Queue, Stack Queue 선입선출 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Collections; namespace Study09 { class App { //생성자 public App() { Console.WriteLine("App"); Queue queue = new Queue(); queue.Enqueue(1); queue.Enqueue("홍길동"); queue.Enqueue(true); queue.Enqueue(null); queue.Enqueue(new Hero()); queue.Enqueue(new Queue()); qu.. 2023. 1. 10.
[ C# 8일차 ] Collections_ArrayList object 형식으로 박싱되어 원래의 데이터 형식으로 명시적 형변환 필요. App Class using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Collections; namespace Study09 { class App { ArrayList list; //변수 정의 //생성자 public App() { Console.WriteLine("App"); //모든 컬렉션을 사용하기 위해서는 //먼저 인스턴스를 생성해야 한다 list = new ArrayList(); //인스턴스를 반드시 생성하자 list.Add("홍길동"); //추가.. 2023. 1. 10.
[ C# 8일차 ] 프로퍼티 App Class using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Study09 { class App { //생성자 public App() { Console.WriteLine("App"); //객체를 초기화 //방법1 //멤버변수 id의 한정자는 private //Hero hero = new Hero(100); //방법2 //멤버변수 id의 한정자는 public //Hero hero = new Hero(); //hero.id = 100; //방법3 //메서드 활용 //Hero hero = new Hero(); //hero.SetI.. 2023. 1. 10.