缺少方法体,或是声名为抽象<abstract>(100分)

  • 主题发起人 主题发起人 kxh
  • 开始时间 开始时间
K

kxh

Unregistered / Unconfirmed
GUEST, unregistred user!
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
public class Visit extends HttpServlet
{
int count=0;
String countstr="";
public void init(ServletConfig config)
throws ServletException
{
super.init(config);
countstr=config.getInitParameter("count");
if(countstr==null)
countstr="0";
try{
count=Integer.parseInt(countstr);
}catch(Exception e)
{}

}
public voiddo
Get(HttpServletRequest req,HttpServletResponse res)
throws ServletException,IOException;
{
res.setContentType("text/plain");
ServletOutputStream sos=res.getOutputStream();
PrintWriter pw=new PrintWriter(sos,true);
int localcount;
synchronized(this)
{
localcount=++count;

}
pw.println("你是第 "+localcount+"位访客");
}
编译时,总出现标题这个错误信息,不知道是会么原因??
 
我解决了,尽然是多打了一个分号?
 
你用的是什么编译环境?
应该可以将错误定位到行吧.
语法错误尽量自己搞定.
 
接受答案了.
 
后退
顶部