JAVA初学者遇到困难求救~!!!

程序包括两个源文件。这是第一个:publicclassSphere{staticfinaldoublePI=3.14;staticintcount=0;//Instanc... 程序包括两个源文件。
这是第一个:
public class Sphere{
static final double PI=3.14;
static int count=0;
//Instance variables
double radius;
double xCenter;
double yCenter;
double zCenter;
//First Class constructor
Sphere(double theRadius,double x,double y,double z){
radius=theRadius; //Set the radius
//Set the coordinates of the center
xCenter=x;
yCenter=y;
zCenter=z;
++count; //Update objiect count
}
//Construct a unit sphere at a point
Sphere(double x,double y,double z){
xCenter=x;
yCenter=y;
zCenter=z;
radius=1.0;
++count;
}
//Construct a unit sphere at the origin
Sphere(){
xCenter=0.0;
yCenter=0.0;
zCenter=0.0;
radius=1.0;
++count;
}
//Static method to report the number of objects created
static int getCount(){
return count; //Return current object count
}
//Instance method to calculate volume
double volume(){
return 4.0/3.0*PI*radius*radius*radius;
}
}

这是第二个:
class CreateSpheres{
public static void main(String[] args){
System.out.println("Number of objects ="+ Sphere.getCount());
Sphere ball=new Sphere(4.0,0.0,0.0,0.0); //Create a sphere
System.out.println("Number of objects ="+ ball.getCount());
Sphere globe=new Sphere(12.0,1.0,1.0,1.0); //Create a sphere
System.out.println("Number of objects="+Sphere.getCount());
Sphere eightBall=new Sphere(10.0,10.0,0.0);
Sphere oddBall=new Sphere();
System.out.println("Number of objects=" +Sphere.getCount());
//Output the volume of each sphere
System.out.println("ball volume="+ball.volume());
System.out.println("globe volume="+globe.volume());
System.out.println("eigtBall volume="+eightBall.volume());
System.out.println("oddBal volume="+oddBall.volume());
}
}

两个源文件编译通过,但是运行得到如下提示:
java.lang.NoClassDefFoundError: CreatSpheres
Exception in thread "main"

P.S:两个源文件在同一个目录下。
展开
 我来答
AI先行者
2007-03-25 · 专注于chatgpt等AI的应用和科普
AI先行者
采纳数:155 获赞数:1138

向TA提问 私信TA
展开全部
我运行了一下没有问题,你看一下你是不是这样运行的:
javac *.java
java CreateSpheres

如果你运行的时候写:java CreateSpheres.java就会出现刚才的问题。
百度网友d1dcbf8
2007-03-25 · TA获得超过1228个赞
知道小有建树答主
回答量:767
采纳率:0%
帮助的人:673万
展开全部
可能是java环境变量设置的问题
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式