Lecture 9 - Bitfields, Unions, and Enums Bitwise Operators Flashcards
sizeof()
- can tell us the size (number of bytes) of any
- variable definition
- type declaration
- array
bitfields
- you can create fields within struct that do not contain a round number of bits
- compacts their storage together
why use bitfields?
- when you really want to store a lot of fields that contain small values
- when you want to do format conversion between different types of data
- probably won’t need them in this class
union
union my_union {
// variables here
} my_var;
- declaration looks just like a struct
- all internal elements overlap (stored in same byte)
initialization of union
union my_union my_var = {5.0};
- assumes you are initializing the FIRST field
why use union?
- when you need to save space in your program
- DON’T USE IT in this class
enum
enum color {
RED,
GREEN,
BLUE
};
enum color my_hue = GREEN;
-looks sort of like a struct declaration
- user when you want to attach a label to a value
enums can also have values
enum example {
VALUE = 1
};
- you can assign exact values to the declaration’s members
- you can assign a value to an enum definition using an integer too
endianness
-the order of bytes in a word or multi-byte value
- does not impact bit ordering for individual bytes
big-endian
-most significant byte first when storing memory
- lowest address
little-endian
least significant byte first
bitwise operators
- used to perform operations on individual bits of numbers
if (x) printf(“x = %d\n”, x); - go back and review these
difference between logical and bitwise operators
- logical operators are used to make a yes/no decision
- bitwise operators are used when you want to work on the bits of a quantity
shift operators «_space;and»_space;
- can take a bunch of bits and shift it one way or another
-every shift left is = to a multiplication by two
ex. x = 10; binary 00001010
x «_space;3 binary 01010000
bit setting/clearing
- user operators clear/set bits
- look at slide example
bit checking
- ex. bits = 44, mask = 8
- if ((bits & mask) == mask) {
// success
}
bitwise operator &