how to call a method in different package?
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
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 |
What are the concepts of 'OOPS'?
What is the size of integer?
What if the main() method is declared as private? What happens when the static modifier is removed from the signature of the main() method?
What is the locale class in java programming?
Can two objects have same hashcode?
What is string builder?
Explain the differences between static and dynamic variables?
If your team member writes code with lots of static variables and static methods, will it cause any side effects?
What is prefix of a string?
What are the types of arrays in java?
What are the differences between heap and stack memory in java?
Is a copy constructor?