Define package in Java.
Answer / nashiinformaticssolutions
The package is a collective bundle of classes and interfaces and the necessary libraries and JAR files. The use of packages helps in code reusability
| Is This Answer Correct ? | 0 Yes | 0 No |
What are some characteristics of interference class?
What is singleton class example?
Explain about method local inner classes or local inner classes in java?
How to declare unique ArrayList ?
In case of inheritance what is the execution order of constructor and destructor?
Why is string builder not thread safe?
What are parsing rules?
How to make a write-only class in java?
Is list ordered in java?
What is set and get methods in java?
what is an anonymous class?
class A{ m2(){ } } class B extends A{ m2(){ } } class c extends B{ m2(){ } } class my_class extends c{ m2(){ } pulic static void main(){ ...My_class a = new my_class(); super.super.super.m2(); is this is leagal if not find what is the legal procedure in order to call A's version of m2(); }