How to import a method from a package into another program? I don\'t know how to import... I write a lil\' code:
package Dan; public class Vik { public
You don't import methods in Java, only types:
import Dan.Vik; class Kab { public static void main(String args[]) { Vik Sam = new Vik(); Sam.disp(); } }
The exception is so-called "static imports", which let you import class (static) methods from other types.
static