Relier Pairs MethodsVersion en ligne Java Concepts, Terms and Definitions par steve finch 1 Method signature 2 Keyword final 3 Parameters 4 Static keyword 5 Overload 6 Override 7 Method body Cannot be overridden by subclasses Method name + parameter list - 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 Code block for the method 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