반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- react
- 동적계획법
- 리트코드
- 배열
- python
- 리액트
- Doitvue.js입문
- 웹프로그래밍
- LeetCode
- 자바스크립트
- Level1
- Level2
- sql
- 프로그래머스
- 파이썬
- javascript
- typescript
- CS
- 카카오
- 백준
- 고득점Kit
- Medium
- web
- C++
- OS
- VUE
- 프로그래밍
- 코테연습
- Level3
- dp
Archives
- Today
- Total
[c++] Union (공용체) 본문
반응형
가장 큰 멤버 변수 사이즈로 할당
union JobUnion {
char name[32];
float salary;
int workerId;
}uJob;
struct JobStruct {
char name[32];
float salary;
int workerId;
}sJob;
int main() {
cout << sizeof(uJob) << endl;
cout << sizeof(sJob) << endl;
return 0;
}
union은 한 공간을 공유함
union JobUnion {
long salary;
int workerId;
}uJob;
struct JobStruct {
long salary;
int workerId;
}sJob;
int main() {
//cout << sizeof(uJob) << endl;
//cout << sizeof(sJob) << endl;
uJob.salary = 11;
uJob.workerId = 1234;
sJob.salary = 21;
sJob.workerId = 4567;
cout << uJob.salary << endl;//1234
cout << uJob.workerId << endl;//1234
cout << sJob.salary << endl;//21
cout << sJob.workerId << endl;//4567
return 0;
}
반응형
'객체지향프로그래밍 (C++)' 카테고리의 다른 글
[c++] void pointer (void 포인터) (0) | 2020.07.07 |
---|---|
[c++] 데이터 표현 (0) | 2020.07.07 |
[c++] structor(구조체) (0) | 2020.07.07 |
[c++] Pointer (포인터) (0) | 2020.07.07 |
[c++] inline variable (0) | 2020.07.07 |
Comments