LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 1260|回复: 2

大家好,关于java的最初编程的问题。。。

[复制链接]
发表于 2005-7-18 16:43:55 | 显示全部楼层 |阅读模式
代码:
//Property.java
import java.util.*;

public class Property {
        public static void main(String[] args){
                System.out.println(new Date());
                Properties p = System.getProperties();
                p.list(System.out);
                System.out.println("---Memory Usage: ");
                Runtime rt = Runtime.getRuntime();
                System.out.println("Total Memory = "
                                + rt.totalMemory()
                                + "Free Memory = "
                                + rt.freeMemory());

try {
        Thread.currentThread().sleep(5*1000);
}catch(InterruptedException e) {}
}
}

应该是没有问题,我编译通过了。
得到Property.class
不过我在运行它的时候,出错了。

java#java Property.class
java#Exception in thread "main" java.lang.NoClassDefFoundError: Property/class

请问是何原因?谢谢。
发表于 2005-7-18 16:46:28 | 显示全部楼层
#java Property.class

#java Property
回复 支持 反对

使用道具 举报

 楼主| 发表于 2005-7-18 16:54:30 | 显示全部楼层
Post by old-cow
#java Property.class

#java Property


Oh,thank you very much,

I learn java for the first time,

but I think I will learn it well with your help.

Thank a lot.
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表