3460:421 OOP S22 C++ Constructor Specifiers

1234567891011121314151617181920212223242526
Across
  1. 2. Bitwise const _____ logical const
  2. 3. For the Class I implementation, the implicit _____ _____ has the form: A::operator=(const A&)
  3. 6. The _____ specifier prevents the compiler from using that constructor for implicit conversion
  4. 9. For the Class I implementation, the implicit _____ _____ has the form: A::A()
  5. 12. For the Class I implementation, the implicit _____ _____ has the form: A::A(const A&)
  6. 13. A POD class is a set of values with object-oriented features and has no _____
  7. 14. A POD class has no user-defined _____ _____ operator
  8. 16. The specifier _____ indicates that the compiler-provided constructor is used
  9. 17. The _____() can check characteristics of types at compile time
  10. 20. In _____ _____, not a single bit can change
  11. 21. The std::_____<B> will indicate if class B is POD
  12. 23. POD is short for _____ _____ _____
  13. 26. A POD class has no user-defined _____
Down
  1. 1. The specifier _____ allows you to remove constructors and the destructor if they would be available by default
  2. 2. The compiler can perform a single _____ _____ to get a type
  3. 4. All _____ types (e.g., int, double) are POD
  4. 5. Data members with _____ can change and still allow the object to be const
  5. 7. A POD class has no _____-_____ data members that are not themselves POD
  6. 8. The specifier default can be applied to constructors, standard methods, and the _____
  7. 10. For the Class II implementation, the addition of the constructor A::A(int) loses the implicit _____ constructor
  8. 11. In _____ _____, the behavior of the object does not change
  9. 15. The std::_____<B> will indicate if class B is a trivial type
  10. 18. Any _____ _____ constructors can be automatically called to get the type of an argument
  11. 19. Consider it a good practice to always use explicit on _____-_____ constructors until it causes a problem
  12. 22. In the Original Code example, the parameter of useBuffer() is a const& to the type _____
  13. 24. In the Original Code example, the constructor of class Buffer has a parameter of type _____
  14. 25. A POD class does have _____ methods