Java 8-10: Creating Classes

1234567891011121314151617
Across
  1. 4. The actions that the instantiated object can use
  2. 8. The technique of using multiple constructors
  3. 10. What a setter does to the value of the variable being held by the object
  4. 12. The first line of the method
  5. 13. A class with a main method
  6. 15. A type of variable that belongs to the object
  7. 17. Methods have this type of scope
Down
  1. 1. A method in Java acts as a _________ in math
  2. 2. A special method in Java that sets up the object
  3. 3. Instance variables have this type of scope
  4. 5. The visibility and accessibility of the variables and functions within a section of code
  5. 6. Similar methods can be combined into one using this
  6. 7. Refers to the variable introduced in the current class
  7. 9. Another word for an accessor
  8. 10. A plan, or blueprint, for creating an object
  9. 11. The keyword that sends data back to the caller
  10. 14. By default, Java makes all variables public, which violates this idea
  11. 16. The type of casing for instance variables and methods