利用BlueJ对程序进行测试

开发 后端
BlueJ是由英国肯特大学,澳大利亚蒙纳什大学与太阳公司(Sun)合作开发的一个完整的JAVA编译调试环境,特别适合JAVA教学和介绍。它支持:完整的图形化的类构建;文本和图形编辑器;虚拟机和debug等。它由简单易用的界面,由适合初学者的交互式对象构建和调用等等,是学习JAVA的好工具!

bluej 可以不写main函数,就对程序进行操作非常简单的测试。

简单功能如何:

首先,在以前,我们对自己所写的程序测试,需要如下操作:

 

 

在main函数中,有对各种对StuClass方法测试的代码。

而如今,我们可以省去main函数的大量书写,通过另外一种方法更加快捷地对程序进行测试:

 

 

操作之后,在bluej界面左下角,出现:

 

 

红色显示的区域即为 类的 一个实例,右击之后,可以对其方法进行测试,如:void addStu(String name), 并且可以通过 Inspect 对实例的变量进行测试,观察。

注意:

1.private方法 不会显示出来,因为 类的对象不能对 类的private方法进行调用。

如果构造函数被private修饰,则不能通过此方法进行测试,因为被private修饰后,只有类的内部可以使用。

2.用static修饰的变量,不需要创建实例,而直接右键点击类,进行观察,因为在是类的变量。

3.用static修饰的方法,同样不需要创建实例,直接右键点击类,可以进行调用,如果语句:Student.createStudent(name);因为是类的方法。

下面,附上代码:

Java代码

 

  1. public class StuClass     
  2. {     
  3.     private Student[] stus;     
  4.     private int number;     
  5.          
  6.     public StuClass()     
  7.     {     
  8.         stus = new Student[50];     
  9.         number = 0;     
  10.     }     
  11.          
  12.     public void addStu(String name)     
  13.     {     
  14.         stus[number] = Student.createStudent(name);     
  15.         number ++;     
  16.     }     
  17.          
  18. }     
  19.     
  20.     
  21.     
  22. public class Student     
  23. {     
  24.     private String stuNum;     
  25.     private String name;     
  26.     private static int num = 0;     
  27.          
  28.     public static Student createStudent(String name)     
  29.     {     
  30.         String stuNum;     
  31.         String numString;     
  32.         num ++;     
  33.         if (num < 10) numString = "00" + num;     
  34.         else if (num < 100) numString = "0" + num;     
  35.         else numString = "" + num;     
  36.         stuNum = "JB09" + numString;     
  37.              
  38.         return new Student(stuNum, name);           
  39.     }     
  40.          
  41.     private Student(String stuNum, String name)     
  42.     {     
  43.         this.stuNum = stuNum;     
  44.         this.name = name;     
  45.     }     
  46.     
  47.         
  48. }     

//以下是课堂的笔记:

//1.stuNum should be created by CLASS_Student(it's okay that CLASS_StuClass arrange the stuNum, but stuNum is the attribute of student, it's better to create stuNum in CLASS_Student.)

//2.avoid the mistake made by OBJECT_StuClass(if delete the method createStudent, then the constructor can be public, but if CLASS_StuClass' OBJECT have wrong operation, stuNum may wrong,too).

【编辑推荐】

  1. Eclipse插件终极攻略:测试插件
  2. Eclipse插件终极攻略:基本概念介绍
  3. Eclipse插件大全 挑选最牛的TOP30
  4. Jython开发的JUnit测试包
责任编辑:金贺 来源: JavaEye博客
相关推荐

2009-04-21 11:02:54

Rational.NET建模

2022-01-10 07:17:02

安全工具CFB模糊测试

2015-06-15 11:45:55

2011-08-22 09:59:16

2011-11-17 16:45:33

AdobeAIRWidget

2013-04-23 09:38:39

2010-02-23 13:33:49

Python测试套件

2013-05-24 09:25:27

2011-03-15 14:36:04

MyisamchkMySQL数据表

2010-12-27 09:19:23

2021-03-13 17:49:56

网站测试Web程序开发

2021-01-05 08:00:00

Windows 10工具GPU

2012-11-01 11:32:23

IBMdw

2012-11-01 11:37:05

JavaScript单元测试测试工具

2013-03-11 18:04:02

2017-07-19 13:40:42

卷积自编码器降噪

2010-02-07 10:21:27

Android应用程序

2010-02-22 15:49:35

Python应用程序

2010-01-15 17:18:57

C++源程序

2023-06-06 16:10:11

点赞
收藏

51CTO技术栈公众号