Methods/Method Overloading Flashcards
A collection of related classes
Package
The term _____is used to create Java programs, either application or
applet
Class
- it is used to group a set of related operations;
- and is used to allow users to create their own data types.
Class
A set of instructions designed to accomplish a specific task.
Methods
the package java.util contains the _____ Scanner. This _____ contains the method nextInt, nextDouble, nextLine for inputting data
into a program.
Class
An application program is a collection of one or more ____
Classes
Collection of methods and data members
Class
A _____can be predefined or standard ___, such as nextInt, print, and println, which are already written and provided as part of the system
Method
public class Classname
{
classMembers
}
Syntax of Class
Public static void main (String[] args)
{
statements
}
Syntax of a method main
is a collection of statements that are grouped together to
perform an operation or a task.
Method
Methods can be: (2)
- Predefined methods
- User defined
In programming language like C and C++, methods are like ___.
Functions
We create methods to make our program modular in a sense that commonly used commands which can be put in a single block of code and then every time we want to use the methods we just _______ it in our program instead of writing the same code______.
call, from scratch
are used to divide complicated programs into manageable
pieces.
Methods
Methods that are already written and provided by java
Pre-defined method
Methods that programmer create
User-defined Methods
Advantages of using methods (4):
- You can focus on just that part of the program
- Different people can work on the same method simultaneously.
- you can right one method once and use it many times
- enhances program’s readability
In java, predefined methods are organized as a collection of classes, called _______
Class libraries
It is organized as a collection of classes
Predefined Method
Give one example of class (method)
class Math (Package: java.lang):
Pow(x,y)
Sqrt(x,y)
Max(x,y)
Min(x,y)
Round(x,y)
User defined methods are classified into two categories (2):
- Value-returning methods
- Void Methods
Methods that have a return data type
Value Returning Methods
Methods that do not have a return data type
Void Methods
Methods Declaration Components (5):
- Modifiers
- The return type
- The method name
- The parameter list in parentheses
- The method body
Such as public and private
Modifiers
the data type of the value returned by the method, or
void if the method does not return a value.
The return type
the rules for field names apply to method names as well.
The method name
a comma-delimited list of input
parameters, preceded by their data types, enclosed by parentheses, ()
The parameter list in parentheses`
Two types of parameter:
- Formal Parameter
- Actual Parameter
a variable declared in the method heading.
Formal Parameter
a variable or expression listed in a call to a method.
- Actual Parameter
Enclosed between braces - the method’s code, including the declaration of local variables, goes here.
The method body
In java, several methods can have the same name within a class. This is called __________ or overloading a method name.
Method Overloading
Two methods are said to have different formal parameter lists if both methods have (2):
- Different number of formal parameters, or
- If the number of formal parameter is the same, then the data type of the formal parameters, in the order you list, must differ in at least one position
To overload a method name, within a class, any two definitions of the method must have ______________ list.
Different formal parameters
Method overloading is an example of ________
Static Polymorphism