[求助]自定义包
我用两个java文件做一个自定义包的测试
package test.rect;
import java.io.*;
public class MyRect
{
public int getRect(int l,int w)
{
return l*w;
}
}
/////////////////////////////////////////////////
import test.rect.MyRect;
class TestRect
{
public static void main(String[] args)
{
MyRect obj = new MyRect();
System.out.println(obj.getRect(5,6));
}
}
可编译时却说包不存在,不知是什么原因