为什么不能调用前面那个类的方法,say下面红色波浪显示有错
public class lxHelloWorld {
public static void main(String[] args) {
// TODO Auto-generated method stub
lxHelloWorld hw = new lxHelloWorld();
hw.say();
}
}
这是我的第二个类,前面那个类除了名字,步骤都一样,为什么这样new不行?错误在say,错因:The method say() is undefined for the type lxHelloWorld