public interface Math{
public boolean result() throws exception;
}
//这是接口类
EJB 类将实现此方法
public class xyz implements Math{
public boolean result() throws exception;
boolean result = true;
return reult1;
}
public interface Math{
public boolean result() throws exception;
}
//这是接口类
EJB 类将实现此方法
public class xyz implements Math{
public boolean result() throws exception;
boolean result = true;
return reult1;
}
当你为一个方法提供一个实现时,你必须在声明之后用花括号提供方法的主体,像这样:
public class xyz implements Math{
public boolean result() throws Exception {
boolean result = true;
return result;
}
}
请注意,由于Java 区分大小写,因此您需要正确地大写类的名称,包括用于异常的名称,即您应该编写throws Exception
而不是throws exception
同时在接口和类中编写。
此外,Java 命名约定建议以大写字母开头命名您的类。考虑重命名xyz
为Xyz
.