CPSC 421 OOP RValue References
Across
- 2. An expression that is not an lvalue is an _____
- 4. We can use _____ to convert an rvalue to an lvalue
- 6. One implementation problem with move semantics was we needed to _____ a swap() method
- 8. An rvalue reference for class A
- 9. An expression that refers to a memory location and therefore we can get the address of via the & operator is an _____
Down
- 1. In move semantics, we _____ data instead of copying
- 3. One implementation problem with move semantics was it could not be used with temporary objects because they are not _____
- 4. Programmers previously implemented move semantics via _____() type operations
- 5. In the declaration "int area = height * width;" the only lvalue
- 7. An lvalue reference for class A