I'm wrote this code create package package use; public class MyClass1 { public int A=0; public MyClass1() { A=0; } public MyClass1(int b) { A=b; } public void setInts(int b) { A=b; } public int getInts() { return A; } } this code is calling getInts method import use.*; import java.lang.*; public class aaaa { public static void main(String args[]) { MyClass1 a=new MyClass1(100); int ss=a.getInts(); System.out.println(Integer.toString(ss)); } } but clause cannot access MyClass1 error; how to create and use package
Senior software engineer
Manfred Leonhardt
Ranch Hand
Joined: Jan 09, 2001
Posts: 1492
posted
0
Hi Dorj, I had no problem using your stuff under JDK1.2 using WinNT. Here's what I did: 1. Created directory c:\temp\use 2. Compiled MyClass1.java into MyClass1.class and placed it into the new directory. 3. Compiled aaaa.java into aaaa.class and placed it into c:\temp directory. 4. Ran the aaaa.class program from within the c:\temp directory. Regards, Manfred.