8 Creating and using methods

 

Exam objectives covered in this chapter

What you need to know

 

[7.1] Create methods and constructors with arguments and return values

Creation of methods with correct return types and method argument lists.

Creation of methods with the same names, but a different set of argument lists.

 

[7.2] Create and invoke overload constructors

Difference between overloading methods and constructors.

A default constructor isn’t the same as a no-argument constructor.

Java defines a no-argument constructor when no user-defined constructors are created. User-defined constructors can be overloaded.

[7.3] Apply the static keyword to methods and fields

The implication of defining fields and methods as static members.

 

Methods are the powerhouse of Java – you use them to define behavior of your interfaces and classes. For the exam, and in general (to program well using Java), you must know the rules and do’s and don’ts of defining methods and constructors and overloading them. This chapter also covers how to create instance or static members by using the static modifier. Overriding methods isn’t covered in this chapter. It is in covered in chapter 10 with coverage of inheritance.

This chapter will help you answers questions on the following topics:

  • Creating methods and constructors.
  • Overloading methods and constructors.
  • Identifying incorrectly overloaded methods and constructors..
  • Implications of using static modifier with fields, initializer blocks and methods

8.1      Create methods with arguments and return types

 

8.1.1   Return type of a method

 
 

8.1.2   Method parameters

 
 
 

8.1.3   Return statement

 

8.2      Create and invoke overloaded methods

 
 
 

8.2.1   Argument list

 
 
 

8.2.2   Return type

 
 
 
 

8.2.3   Access level

 
 
 

8.3      Create and invoke constructors

 
 

8.3.1   User-defined constructors

 
 

8.3.2   Default constructor

 
 
 

8.4      Overloaded constructors

 
 

8.5      Nonaccess modifiers

 
 

8.5.1   abstract modifier

 
 

8.5.2   final modifier

 
 
 

8.5.3   static modifier

 
 
 

8.6      Summary

 
 

8.7      Sample exam questions

 
 
 

8.8      Answers to sample exam questions

 
 
 
sitemap

Unable to load book!

The book could not be loaded.

(try again in a couple of minutes)

manning.com homepage