-
객체 자료형(object)코딩Coding/C#_연습 2020. 6. 2. 17:36728x90
객체 자료형:
다음 예제는 객체(object)를 다루는 object 형식에 대한 예제입니다.
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApp1 { class Program { static void Main(string[] args) { object a = 12345678910; object b = 12345.67891011; object c = true; object d = "안녕하세요"; Console.WriteLine("a={0}, b = {1} c={2}, d={3},", a, b, c, d); } } }
결과
출처: https://blog.hexabrain.net/128[끝나지 않는 프로그래밍 일기]
object는 모든 자료형의 최상위 부모 클래스, 즉 C#에서 모든 객체들은 object 클래스로 부터 상속을 받습니다. 한마디로 말하자면, '모든 자료형의 조상은 object다!'라고 말할 수 있습니다반응형'코딩Coding > C#_연습' 카테고리의 다른 글
형식 변환(Type Conversion)-정수와 실수 간의 형식 변환 (0) 2020.06.04 출력 너비 지정 (0) 2020.06.04 사용자 지정 수치 서식 문자열(Custom Numeric Format Strings) (0) 2020.06.04 수치 서식 문자열(Standard numeric format strings) (0) 2020.06.02 논리 자료형(bool)(bool literals) (0) 2020.06.02 문자, 문자열 자료형(char, string) (char literals,string literals) (0) 2020.06.02 실수(real number)자료형(float, double, decimal 형식)(float literals) (0) 2020.06.02 데이터 형식 연습(byte,sbyte,short,ushort,int,uint,long,ulong) (0) 2020.06.02