ObjectsWord

12345678910111213141516
Across
  1. 4. Used as a middle man to access private data fields.
  2. 5. An object is an ______________ of a class
  3. 9. What you use to pass information into a method
  4. 10. A good method __________ makes it clear what the method does
  5. 12. An object uses this to keep track of what it knows
  6. 14. An object’s methods define its ________
  7. 16. These define what an object does
Down
  1. 1. ______ has same name as class and it is a special method that is executed automatically each time when a new instance of a class created.
  2. 2. The statement you use to create an object
  3. 3. An object's fields define its _________
  4. 6. What you use to build an object
  5. 7. Don’t use this keyword in your class declaration if you want to be able to create instances of it
  6. 8. We use ________ for naming convention of private fields and local variables.
  7. 11. This statement tells a method to immediately exit, and can specify the value that should be passed back to the statement that called the method
  8. 13. It’s a great idea to create a class ________ on paper before you start writing code
  9. 15. If a method return type is ______ it doesn't return anything.