answersLogoWhite

0


Best Answer

If you are referring to the order in a Class definition which methods are declared, then the answer is that it makes no difference at all. Unlike other languages, where a method (or function) must be declared before others may call it, Java does not insist on this.

This is due to the dual-pass method of compiling: the first pass of a Java source file is to determine the signature of all classes and methods, while the second pass looks at the implementation of each.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How important is the order in which Methods are placed in Java?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Is it possible to override overloaded methods why?

Yes. Overloaded methods are also Java methods and all Java methods can be overridden.


Explain three different methods in java?

There are three different methods /functions in java are there : 1)computational methods.2)manipulative methods.3)procedural methods.


What is a java object?

A java object is a collection of methods and properties defined in the Java programming language.


The actions in a java class are called?

The actions in a java class are called methods.


What makes up a Java class?

Fields and methods. Fields are variables defined at the class level, i.e., they are available for all methods. Methods are the equivalent of functions / procedures, but they are defined for a specific class.


Who invoke main function in java?

The Java Runtime Environment invokes main methods.


What is the use of functions in java?

Same as in other languages. To organize commands into logical pieces. However, in Java the functions are called "methods". This is related to the fact that in Java, methods or functions are defined as part of a class.


How nesting of methods is done in java?

No, Java only allows a method to be defined within a class, not within another method.


What are duplicate java method names?

overloaded methods.


What implicit modifiers interface methods have in java?

public


What is the purpose of java methods?

go ask your monitor.


Why keywords in java important?

In the Java programming language, a keyword is one of 53 reserved words that have a predefined meaning in the language; because of this, programmers cannot use keywords as names for variables, methods, classes, or as any other identifier.