how to call a method in different package?

Answers were Sorted based on User's Feedback



how to call a method in different package?..

Answer / sandhya.s

Import the package in to the class, where other package's
method is useful.

Is This Answer Correct ?    18 Yes 4 No

how to call a method in different package?..

Answer / venkatachalapathy

import fully Qualified name of the package in which the
method is present
use the method as "classname.methodname"
or
create the object of that package using a fullyqualifed
name of that package and use the method
as "object.methodname

Is This Answer Correct ?    12 Yes 0 No

how to call a method in different package?..

Answer / kiranksj

import package in the class.That package related methods are now accessible in a class.If u want call a method
classname.method(); or create a new object to a class and then call the method like objectname.method();

Is This Answer Correct ?    2 Yes 0 No

how to call a method in different package?..

Answer / taresh nama

You Must import the package with fully Qualified name of
the class contains method.
Now you can call a method as:classname.method();
You can create a new object to that class and then call the
method as objectname.method();

Is This Answer Correct ?    3 Yes 5 No

Post New Answer

More Core Java Interview Questions

How to reverse string in java?

0 Answers  


What are abstract methods in java?

0 Answers  


What are the limitations for static method?

3 Answers   Greenwood,


What is a thin-client application?

5 Answers   Adobe,


What do you mean Abstraction in java?

0 Answers   Aspire, Infogain,






Explain about fail fast iterators in java?

0 Answers  


how does the run() method in runnable work? : Java thread

0 Answers  


which of tha following is not a thread safe class? a) ArrayList b)Vector c)HashTable d)None

17 Answers  


Can we override the main method?

4 Answers  


How are multiple inheritances done in Java?

0 Answers   Atos Origin,


Can a serialized object be transferred via network?

0 Answers  


How does regex work?

0 Answers  


Categories