데이터형
-
[C# 기본] 2. 데이터형C#/강의 | Lecture 2018. 11. 28. 15:57
1. 기본 데이터형1-1. C#의 데이터형은 object로부터 파생된 객체- int a; // a는 변수 이면서 int형 객체이므로 int와 관련된 메서드, 변수 사용 가능 1-2. object는 System.Object를 말함 1-3. 정수형 : bool, int, long, short, char, byte- int == System.Int32, 4byte- long == System.Int64, 8byte- char == System.Char, 2byte (유니코드)- bool == System.Boolean , C/C++과 다르게 true, false 키워드로 할당되고, 1byte- byte == System.Byte, 1byte 1-4. 실수형 : float, double- float == Sys..