3460:421 OOP C++ Constructor Specifiers

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