-
Notifications
You must be signed in to change notification settings - Fork 0
/
Program.cs
305 lines (259 loc) · 9.12 KB
/
Program.cs
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CSPractice1
{
class Box
{
public int width { get; set; }
private int height;
public int Height
{
get { return height; }
set
{
if (value > 0)
{
height = value;
}
else { throw new Exception(); }
}
}
}
class Sample
{
public static int value;
static Sample()
{
value = 10;
Console.WriteLine("정적 생성자 호출");
}
public Sample()
{
Console.WriteLine("(인스턴스)생성자 호출");
}
~Sample()
{
Console.WriteLine("소멸자 호출");
}
}
class MyMath
{
public static int classVar = 1;
public int instanceVar = 2;
public static int Abs(int input)
{
Console.WriteLine(classVar);
// 클래스 메서드에서 인스턴스 변수 접근 불가
// Console.WriteLine(instanceVar);
return (input >= 0) ? input : -input;
}
// 메서드 시그네이처(이름, 매개변수)가 겹쳐서 안됨
//public static double Abs(int input) { return 0; }
public static double Abs(double input) { return 0; }
}
class FirstClass
{
}
internal class Program
{
class Test
{
public int value = 10;
}
static void Change(Test t)
{
t.value = 20;
}
class ThirdClass
{
}
static void Main(string[] args)
{
// 컨텍스트 키워드
var abc = "Hello World"; // OK
// 한줄 주석
/*
*
* 여러줄 주석
* */
/*** XML 주석 ***/
// 출력
Console.WriteLine("Hello World");
Console.Write("뉴라인X");
// #1 12-3. 기본 자료형
// 정수
Console.WriteLine(52 + 4 - 1);
// 사칙 연산자 = 산술 연산자 = Arithmetic Operator
// + - * / %
// 실수(Real Number)
Console.WriteLine(52.0);
// 문자(Character)
Console.WriteLine('A');
Console.WriteLine('가');
// 문자열(String)
Console.WriteLine("Hello World");
// 이스케이프 문자
Console.WriteLine("미\n\\림\t마\"고");
// 문자열 연결 연산자(Concatenation Operator)
Console.WriteLine("Hello" + " " + "World");
// 문자열 인덱스 접근 [ ]
Console.WriteLine("Hello World"[4]); // 'o'
//Console.WriteLine("Hello World"[100]); // 예외발생
// 주의
Console.WriteLine('가' + '힣');
// 문자열연결연산자X 덧셈 연산자로 인식
// 논리(Boolean)
Console.WriteLine(true);
Console.WriteLine(false);
// 비교 연산자(Comparison Operator)
// == != > < >= <=
// 논리 연산자(Logical Operator)
// && || !
Console.WriteLine(!true);
Console.WriteLine(true && false);
Console.WriteLine(true || false);
// #1 12-4. 변수
string name = "문자열 자료형";
// #1 12-5. 복합대입연산자
// += -= *= /= %=
string output = "Hello"; ;
output += " World";
Console.WriteLine(output);
// #1 12-6. 증감 연산자
int number = 10;
Console.WriteLine(number++); // 10
Console.WriteLine(++number); // 12
Console.WriteLine(number--); // 12
Console.WriteLine(--number); // 10
// #1 12-8 var 키워드
var varnumber = 20;
// var abc; // x. 반드시 초기화 해줘야 함
// #1 12-9 입력
string input = Console.ReadLine();
Console.WriteLine(input);
// #1 12-10 자료형변환
// 굉장히 중요
// #2 13-1. if 조건문
bool condition = true;
if (condition)
{
// true
}
else if (condition)
{
// true2
}
else
{
// other
}
// #2 13-2. switch 조건문
int v = 0;
switch (v)
{
case 0:
// 0
break;
default:
// other
break;
}
// #2 13-6. 삼항연산자
Console.WriteLine(number %2 != 1 ? "짝수" : "홀수");
// #3 14-1. 반복문과 배열
int[] intArray = new int[100];
Console.WriteLine(intArray[99]);
// #3 14-2. while 반복문
int i = 0;
int[] intArray2 = { 52, 273, 32 };
while( i < intArray2.Length)
{
Console.WriteLine(intArray2[i]);
i++; // 탈출을 위한 변수
}
// #3 14-6. foreach 반복문
string[] foreachArray = { "사과", "배", "포도" };
foreach (var item in foreachArray)
{
Console.WriteLine(item);
}
// #4 21-2. 클래스 사용
Random random = new Random();
Console.WriteLine(random.Next(1, 7));
Console.WriteLine(random.Next(1, 7));
Console.WriteLine(random.Next(1, 7));
Console.WriteLine(random.Next(1, 7));
Console.WriteLine(random.Next(1, 7));
Console.WriteLine(random.Next(1, 7));
Console.WriteLine(Math.Abs(-9)); //9
Console.WriteLine(Math.Ceiling(52.273)); //53
Console.WriteLine(Math.Floor(52.273)); //52
Console.WriteLine(Math.Max(52, 273)); //273
Console.WriteLine(Math.Min(52, 273)); //52
Console.WriteLine(Math.Round(52.273)); //52
Console.WriteLine(Math.PI); //3.14159265358979
// #4 21-3. 클래스 생성
// #4 21-4. 인스턴스 변수
User user1 = new User();
user1.name = "이미림";
user1.phoneNumber = "010-1234-5678";
Product p1 = new Product();
p1.name = "어른폰";
p1.price = 999999;
Product p2 = new Product() { price = 1000000, name = "아이폰" };
Product p3 = new Product() { price = 1000000 };
// #4 21-5. 클래스 변수
Console.WriteLine(Product.TAX_RATIO);
// Console.WriteLine(p1.TAX_RATIO); // Java는 가능하나 C#은 X
// #5 22-3. 클래스 메서드
// #5 22-4. 메서드 오버로딩
Console.WriteLine(MyMath.Abs(-10)); // Abs(int)
Console.WriteLine(MyMath.Abs(10.0)); // Abs(double)
Console.WriteLine(MyMath.Abs(-10L)); // Abs(double)
Console.WriteLine(MyMath.Abs(3.0f)); // Abs(double)
// #5 22-6. 생성자(+ 정적 생성자)
Console.WriteLine("첫 번째 위치");
// Sample의 정적 생성자가 딱1번 호출됨
Console.WriteLine(Sample.value);
Console.WriteLine("두 번째 위치");
Sample sample = new Sample();
Console.WriteLine("세 번째 위치");
// #5 22-7. 소멸자
// #5 22-8. 속성(Property)
Box b = new Box();
b.width = 100;
b.Height = 100;
// b.Height = -100; // 예외발생
// #5 22-9. 값 복사와 참조복사
Test test = new Test();
test.value = 100;
Change(test);
Console.WriteLine(test.value); // 20
// #6 23-4. is 키워드(+ as 키워드)
List<Animal> animals = new List<Animal>()
{
new Dog(), new Cat(), new Dog(), new Cat(), new Cat(),
};
foreach (var item in animals)
{
item.Eat();
item.Sleep();
if (item is Dog)
{
((Dog)item).Bark();
}
else if (item is Cat)
{
var cat = item as Cat;
if (cat != null) cat.Meow();
}
}
// #6 23-6. 상속의 생성자
Child child = new Child();
Child child2 = new Child("input2");
}
}
}