Matching Pairs MethodsOnline version Java Concepts, Terms and Definitions by steve finch 1 Method body 2 Static keyword 3 Overload 4 Keyword final 5 Method signature 6 Override 7 Parameters Code block for the method - associated with the class and not with any particular instantiation of the class - can be accessed without creating an instance of the class the same method name can be defined with more than one signature Method name + parameter list allows a subclass or child class to provide a specific implementation of a method that is already provided by one of its superclasses or parent classes. Placeholders for values that will be “passed in” as data for the method to work on Cannot be overridden by subclasses