A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 天涯无痕 中级黑马   /  2014-7-16 21:38  /  1100 人查看  /  5 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

编译没问题   一执行  出现乱七八糟的错误


/*
需求计算一段时间的运行时间
通过开始的时间和结束的时间的差来计算
*/
abstract class Gettime
{
        public void Gettime()
        {
                long s=System.currentTimeMillis();
            chenxu();
                long e=System.currentTimeMillis();
                System.out.println(e-s);
               
        }
        public abstract  void chenxu();       
}
class getTime extends Gettime
{
        public void chenxu()
        {
                for (int x=0;x<1000 ;x++ )
                {
                        System.out.println(x);
                }
        }
}
class  time
{
        public static void main(String[] args)
        {
                 getTime t=new  getTime();
                t.Gettime();
        }
}


5 个回复

倒序浏览
本帖最后由 SLJ_920808 于 2014-7-16 22:27 编辑

应该是命名的时候不对!你试下这个:
  1. abstract class GetTime
  2. {
  3.         public void getTime()
  4.         {
  5.                 long s=System.currentTimeMillis();
  6.             chenxu();
  7.                 long e=System.currentTimeMillis();
  8.                 System.out.println(e-s);
  9.                
  10.         }
  11.         public abstract  void chenxu();        
  12. }
  13. class SubTime extends GetTime
  14. {
  15.         public void chenxu()
  16.         {
  17.                 for (int x=0;x<1000 ;x++ )
  18.                 {
  19.                         System.out.println(x);
  20.                 }
  21.         }
  22. }
  23. public class GetTimeDemo {
  24.         public static void main(String[] args)
  25.         {
  26.                  SubTime t = new  SubTime();
  27.          t.getTime();
  28.         }
  29. }
复制代码



回复 使用道具 举报
你这类的名字起的也态不规范了
  1. class getTime extends Gettime    //我把getTime换了一个名字就行了,好像是getTime和Getttime这两                                                             个名字冲突了
  2. {
  3.         public void chenxu()
  4.         {
  5.                 for (int x=0;x<1000 ;x++ )
  6.                 {
  7.                         System.out.println(x);
  8.                 }
  9.         }
  10. }
复制代码

getTime t=new  getTime();当然这的类名也换成你修改之后的就行了
回复 使用道具 举报
这是你给的完整的,我修改之后的,可以运行
  1. abstract class Gettime
  2. {
  3.         public void Gettime()
  4.         {
  5.                 long s=System.currentTimeMillis();
  6.             chenxu();
  7.                 long e=System.currentTimeMillis();
  8.                 System.out.println("-----"+(e-s));
  9.                
  10.         }
  11.         public abstract  void chenxu();        
  12. }
  13. class GTime extends Gettime
  14. {
  15.         public void chenxu()
  16.         {
  17.                 for (int x=0;x<1000 ;x++ )
  18.                 {
  19.                         System.out.println(x);
  20.                 }
  21.         }
  22. }
  23. class  time
  24. {
  25.         public static void main(String[] args)
  26.         {
  27.                  GTime t=new  GTime();
  28.                 t.Gettime();
  29.         }
  30. }
复制代码
回复 使用道具 举报

好像就是名字起得不规范啊
回复 使用道具 举报
爨庚轩 发表于 2014-7-16 22:15
这是你给的完整的,我修改之后的,可以运行

xiexie   啊   学到了
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马