#include <iostream>
#include <iomanip>
using namespace std;
typedef union {
struct { //один вариант - безымянная структура из двух полей
uint16_t LowWord;
uint16_t HighWord;
};
uint32_t DoubleWord; //второй вариант
} DOUBLEWORD;
int main()
{
DOUBLEWORD w;
cout << sizeof(w) << " bytes" << endl; //4 bytes - по размеру наибольшего члена union
//заполняем память, используя первый вариант.
w.LowWord = 0x0001;
w.HighWord = 0x0002;
//читаем, используя второй вариант
cout << hex << setw(8) << setfill('0') << w.DoubleWord << endl; //00020001
}
typedef struct {
size_t item_count;
enum { UINT8, UINT16, UINT32, UINT64 } item_type;
union {
void* voidPtr;
uint8_t* bytePtr;
uint16_t* wordPtr;
uint32_t* ulongPtr;
uint64_t* quadPtr;
} ptr;
} MultiTypeArray;
MultiTypeArray arr;
arr.item_count = 16;
arr.item_type = MultiTypeArray::UINT32;
arr.ptr.voidPtr = malloc(sizeof(uint32_t) * arr.item_count);
for (size_t i = 0; i < arr.item_count; i++)
arr.ptr.ulongPtr[i] = i;
uint8_t& as_byte(size_t index);
, но это не сделает работу сильно удобнее. void bit_set(uint8_t& port, uint8_t bit)
NOTE: As of version 0.9.41, if the locate functions can’t find the provided image, they’ll raise ImageNotFoundException instead of returning None.
u = main(n-d[i], k.remove(d[i]))