Java开发网 Java开发网
注册 | 登录 | 帮助 | 搜索 | 排行榜 | 发帖统计  

您没有登录

» Java开发网 » Java SE 综合讨论区  

按打印兼容模式打印这个话题 打印话题    把这个话题寄给朋友 寄给朋友    该主题的所有更新都将Email到你的邮箱 订阅主题
flat modethreaded modego to previous topicgo to next topicgo to back
作者 如何为我的异常类加上 "return type"?
chuxueaihaozhe





发贴: 26
积分: 0
于 2005-07-10 23:01 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list
public class NewPrimeFinder implements Runnable {
public long target;
public long prime;
public boolean finished = false;
private Thread runner;

NewPrimeFinder(long inTarget) throws NegativeNumberException {
if (inTarget < 0) {
NegativeNumberException nne = new NegativeNumberException(
"Negative numbers not allowed: " + inTarget);
throw nne;
}
target = inTarget;
if (runner == null) {
runner = new Thread(this);
runner.start();
}
}

public void run() {
long numPrimes = 0;
long candidate = 2;
while (numPrimes < target) {
if (isPrime(candidate)) {
numPrimes++;
prime = candidate;
}
candidate++;
}
finished = true;
}

boolean isPrime(long checkNumber) {
double root = Math.sqrt(checkNumber);
for (int i = 2; i <= root; i++) {
if (checkNumber % i == 0)
return false;
}
return true;
}
}

class NegativeNumberException extends Exception {
NegativeNumberException() {
super();
}
NegativeNumberException(String message) {
super(message);
}
}
================================
c:\>javac PrimeFinder.java
PrimeFinder.java: :invalid method declaration;return type required
NegativeNumberException()
^
PrimeFinder.java: :invalid method declaration;return type required
NegativeNumberException(String message)
^
2 errors
=================================
Why?How?Help me!Thanks!





话题树型展开
人气 标题 作者 字数 发贴时间
5966 如何为我的异常类加上 "return type"? chuxueaihaozhe 1678 2005-07-10 23:01
4800 Re:如何为我的异常类加上 "return type"? why 103 2005-07-11 00:11
4942 Re:如何为我的异常类加上 "return type"? chuxueaihaozhe 261 2005-07-11 21:26
4882 Re:如何为我的异常类加上 "return type"? heart5 327 2005-07-15 07:46
4876 Re:如何为我的异常类加上 "return type"? chuxueaihaozhe 64 2005-07-15 21:13
4746 Re:如何为我的异常类加上 "return type"? why 409 2005-07-15 23:16
5167 Re:如何为我的异常类加上 "return type"? chuxueaihaozhe 2387 2005-07-17 23:24

flat modethreaded modego to previous topicgo to next topicgo to back
  已读帖子
  新的帖子
  被删除的帖子
Jump to the top of page

   Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent
Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1
客服电话 18559299278    客服信箱 714923@qq.com    客服QQ 714923