Computer Science, asked by kyash0190, 9 months ago

Suppose you want to use the class MyClass of the package MyPackage. Utility Library in a program you are writing.
What do you need to do to make the following?
class MyClass available to your program
all the classes of the package available to your program​

Answers

Answered by mohammads
0

Answer:

1. import MyPackage.Myclass

2 import MyPackage.*

Explanation:

Answered by avigyan24
0

Answer:

import java.MyPackage.UtilityLibrary.MyClass;

Similar questions