class Matrix{
private :
union {
struct {
T _11, _12, _13, _14; // standard names for components
T _21, _22, _23, _24; // standard names for components
T _31, _32, _33, _34; // standard names for components
T _41, _42, _43, _44; // standard names for components
};
T _array[16];
};
}
15개의 배열과 각 _숫자 는 순서적으로 이름은 다르지만 같은곳을 공유하게된다
반응형
'프로그래밍(Programming) > c++, 11, 14 , 17, 20' 카테고리의 다른 글
UINT_PTR (32비트 및 64비트 호환 포인터연산) (0) | 2012.11.01 |
---|---|
행렬 배열레퍼런스 비트연산으로 가져오기 아이디어 (0) | 2012.11.01 |
restrict 포인터 {void* restrict pt} (0) | 2012.11.01 |
부동 소수점( 기수법 ) (0) | 2012.11.01 |
void* operator new(size_t t, 추가 인자와 사이즈 계산 (0) | 2012.11.01 |