일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- Google Spreadsheet
- c#
- PANDAS
- hive
- matplotlib
- PySpark
- array
- 파이썬
- PostgreSQL
- math
- Python
- Excel
- google apps script
- gas
- Github
- Tkinter
- SQL
- Java
- django
- Kotlin
- Mac
- Apache
- dataframe
- numpy
- Google Excel
- list
- Redshift
- GIT
- string
- Today
- Total
달나라 노트
C# : List 본문
C#에서 여러 요소를 하나의 묶음으로 저장할 수 있는 대표적인 자료형은 Array입니다.
Array 관련 내용 = https://cosmosproject.tistory.com/539
이렇게 여러 값들을 하나의 묶음으로서 보관할 수 있는 것을 Collection이라고 합니다.
이번에는 List라는 Collection을 알아봅시다.
using System;
using System.Collections.Generic;
class MyProgram
{
public static void Main()
{
List<String> ls = new List<String> { };
ls.Add("Apple");
ls.Add("Banana");
ls.Add("Pineapple");
ls.Add("Peach");
Console.WriteLine(ls);
Console.WriteLine(ls[0]);
Console.WriteLine(ls[1]);
Console.WriteLine(ls[2]);
Console.WriteLine(ls[3]);
}
}
-- Result
System.Collections.Generic.List`1[System.String]
Apple
Banana
Pineapple
Peach
위 예시는 String 타입의 데이터를 담는 List를 생성하고, 생성한 List에 요소들을 채워넣는 코드입니다.
- using System.Collections.Generic;
List를 포함한 여러 가지 Collection을 사용하기 위해서는 위처럼 System.Collections.Generic을 import 해야합니다.
- List<String> ls = new List<string> { };
List의 생성부입니다.
List<String> -> 이 부분은 String 타입의 데이터를 담을 List라는 의미입니다.
ls -> 이것은 List의 이름입니다. 원하는 이름으로 바꿀 수 있습니다.
new List<String> { } -> String 타입을 담는 List class로 ls라는 변수를 List 객체로 만듭니다.
List에 넣을 수 있는 데이터 타입은 단순히 String 뿐 아니라 Int, float, 또 다른 class 모두가 가능합니다.
List는 위처럼 일단 List를 생성해두고 그 요소는 나중에 추가합니다.
또한 List는 비어있는 List를 생성할 때 List의 길이를 명시하지 않습니다.
비어있는 Array를 선언할 때에는 반드시 Array의 길이를 명시해줘야하는데 List는 길이를 적어주지 않습니다.
- ls.Add("Apple");
- ls.Add("Banana");
- ls.Add("Pineapple");
- ls.Add("Peach");
Add() method는 List에 원하는 요소를 추가해줍니다.
- Console.WriteLine(ls[0]);
- Console.WriteLine(ls[1]);
- Console.WriteLine(ls[2]);
- Console.WriteLine(ls[3]);
Array와 마찬가지로 List도 위처럼 indexing을 이용하여 List 속 요소에 접근할 수 있습니다.
'C# > C#' 카테고리의 다른 글
C# : Random, Next, NextDouble (랜덤한 수 추출, 난수 추출, 특정 범위 안의 랜덤한 정수 추출) (0) | 2022.04.18 |
---|---|
C# : Clipping (Clip, GraphicsPath) (0) | 2022.04.15 |
C# : DrawEllipse, Pen (타원 그리기, 그림 그리기, 도형 그리기) (0) | 2022.04.08 |
C# : MouseEventArgs, MouseEventHandler (마우스 포인터 위치) (1) | 2022.04.08 |
C# : Bitmap, GetPixel, ToArgb, FromArgb, SetPixel (이미지 다루기, 색상 다루기, ARGB 변환, Color 변환) (0) | 2022.04.07 |