Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Package1 and Package2 both have a method name lets say
"methodA" with different implementation. When I import both
the packages in a java class how can I use both the methods?

Answer Posted / mohan

Since all non static methods in JAVA supports polymorphism,
we can call the respective methods using its instances..
considering that methodA is non static method we can call it
using instance of the respective class.. so Create instances
of the respective classes and then call the methods ..


for eg:

ClassA ins1=new ClassA();
ClassB ins2=new ClassB();

ins1.methodA();
ins2.methodA();

Is This Answer Correct ?    5 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between state-based unit testing and interaction-based unit testing?

985


Are arrays immutable in java?

1145


Can we define private and protected modifiers for variables in interfaces?

1126


What do you know about java?

1009


Why is java multithreaded?

1042


When is update method called?

1193


What is predicate in java?

1099


what is the constructor and how many types of constructors are used in java?

1036


What is the difference between heap memory and stack memory?

1117


What is the difference between the ">>" and " >>>" operators in java?

1031


What is difference between static variable and global variable?

1112


What is array pointers ?

1082


What is the purpose of the strictfp keyword?

1232


What is meant by interface?

1101


What is string in java is it a data type?

1066