Lecture 9 - Bitfields, Unions, and Enums Bitwise Operators Flashcards

1
Q

sizeof()

A
  • can tell us the size (number of bytes) of any
  • variable definition
  • type declaration
  • array
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

bitfields

A
  • you can create fields within struct that do not contain a round number of bits
  • compacts their storage together
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

why use bitfields?

A
  • 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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

union

A

union my_union {
// variables here
} my_var;
- declaration looks just like a struct
- all internal elements overlap (stored in same byte)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

initialization of union

A

union my_union my_var = {5.0};
- assumes you are initializing the FIRST field

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

why use union?

A
  • when you need to save space in your program
  • DON’T USE IT in this class
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

enum

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

enums can also have values

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

endianness

A

-the order of bytes in a word or multi-byte value
- does not impact bit ordering for individual bytes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

big-endian

A

-most significant byte first when storing memory
- lowest address

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

little-endian

A

least significant byte first

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

bitwise operators

A
  • used to perform operations on individual bits of numbers
    if (x) printf(“x = %d\n”, x);
  • go back and review these
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

difference between logical and bitwise operators

A
  • 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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

shift operators &laquo_space;and&raquo_space;

A
  • 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 &laquo_space;3 binary 01010000
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

bit setting/clearing

A
  • user operators clear/set bits
  • look at slide example
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

bit checking

A
  • ex. bits = 44, mask = 8
  • if ((bits & mask) == mask) {
    // success
    }
17
Q

bitwise operator &