CPSC 421 OOP C++ Constructor Specifiers

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