-6
public interface Math{

public boolean result() throws exception;

}

//这是接口类

EJB 类将实现此方法

public class xyz implements Math{

public boolean result() throws exception;

boolean result = true;

return reult1;


}
4

1 回答 1

2

当你为一个方法提供一个实现时,你必须在声明之后用花括号提供方法的主体,像这样:

public class xyz implements Math{

    public boolean result() throws Exception {

        boolean result = true;

        return result;
    }

}

请注意,由于Java 区分大小写,因此您需要正确地大写类的名称,包括用于异常的名称,即您应该编写throws Exception而不是throws exception同时在接口和类中编写。

此外,Java 命名约定建议以大写字母开头命名您的类。考虑重命名xyzXyz.

于 2013-10-24T16:11:46.260 回答