该程序的目的是测试我创建的另一个程序。
它被称为ComplexNumber
。这个类包含了添加,乘法,除去复数数字和东西的所有内容,它们都是方法。老师要我们创建一个测试类,这是我到目前为止所做的。
我遇到的问题是从ComplexNumber
类调用方法。例如:我尝试调用plus
方法,此方法接收两个ComplexNumber
并添加它们。到目前为止,我一直在使用交互面板测试这些方法,并且效果很好。我在交互面板中调用它们的方式是first.plus(Second)
,这将给出最终值。
在测试课上,我很难调用这些方法 我知道我需要班级名称。
我试过了:
ComplexNumber.first.plus(second)
但它没有用。
我该怎么办?
这是我的代码:
class TestComplexNumber
{
double real;
double imag;
public TestComplexNumber(double a, double b)
{
this.real=a;
if ((b<1000)&&(b>-1000))
this.imag=b;
else
{
this.imag=0;
System.out.println("The value you typed in for imag is <1000 or >-1000, value of imag is assigned the value of 0.");
}
}
public String toString()
{
double real,imag;
real=this.real;
imag=this.imag;
if (((real<0)||(real>0))&&(imag%1!=0))
{
if (roundThreeDecimals(imag)>0)
return ""+roundThreeDecimals(real)+"+"+roundThreeDecimals(imag)+"i";
else
return ""+roundThreeDecimals(real)+""+roundThreeDecimals(imag)+"i";
}
else if ((real%1!=0)&&(imag!=0))
return ""+roundThreeDecimals(real)+"+"+(int)imag+"i";
else if((real==0)&&(imag%1!=0))
return ""+imag+"i";
else if ((real==0)&&(imag !=0))
return ""+(int)imag+"i";
else if ((imag==0)&&(real!=0))
return ""+(int)real+"";
else if (((real<0)||(real>0))&&(imag<0))
return ""+(int)real+"-"+(int)Math.abs(imag)+"i";
else if((real!=0)&&(imag!=0))
return ""+(int)real+"+"+(int)imag+"i";
else
return "";
}
public static double roundThreeDecimals(double c)
{
double temp = c*1000;
temp = Math.round(temp);
temp = temp /1000;
return temp;
}
public static void main(String args[])
{
for(int i=0;i<1;i++)
{
//Testing decimal values
TestComplexNumber first=new TestComplexNumber((int)(Math.random()*100)-(int)(Math.random()*100),(Math.random()*100));
TestComplexNumber second=new TestComplexNumber((Math.random()*100),(Math.random()*100)-(int)(Math.random()*100));
//Testing whole values
TestComplexNumber third=new TestComplexNumber((int)(Math.random()*100)-(int)(Math.random()*100),(int)(Math.random()*100));
TestComplexNumber fourth=new TestComplexNumber((Math.random()*100)-(int)(Math.random()*100),(int)(Math.random()*100));
System.out.println(first);
System.out.println(second);
System.out.println(third);
System.out.println(fourth);
System.out.println("Test value for plus:"+first+second+" which added="+plus(second));
}
}
}
ComplexNumber类的方法示例:
public ComplexNumber plus(ComplexNumber other) {
ComplexNumber sum= new ComplexNumber(this.real,this.getImag());
sum.real=(this.real)+(other.real);
sum.setImag((this.getImag())+(other.getImag()));
return sum;
}
答案 0 :(得分:0)
public class Tester {
public static void main(String [] args) {
// create two objects of ComplexNumbers with whatever values you like
ComplexNumber numA = new ComplexNumber(....);
ComplexNumber numB = new ComplexNumber(....);
// then add them and store the returned reference into a new variable
ComplexNumber result = numA.plus(numB);
// print the number however you like
System.out.println(result.real + " + i" + result.getImag());
}
}
答案 1 :(得分:0)
我不知道这个“交互面板”是什么,但是first.plus(second)
来自那里应该与实际代码没有什么不同。
plus
是first
实例中调用的方法。
该方法不应与static
一样static ComplexNumber plus(ComplexNumber other)
,因此您无需使用类名来使用它。
总之,要从另一个类调用实例方法,您需要一个实例,您应该有四次调用new ComplexNumber()
,不 new TestComplexNumber()
我的老师说我必须在新课程中而不是在ComplexNumber课程中创建测试程序
我认为你真正的问题是你有这个类TestComplexNumber
,它只是一个“测试类”(只需要main
方法),而不是重新创建ComplexNumber
类,这似乎是你所做的(因为我看不到加号,多重,分裂等)。
如果您应该实际创建一个“测试套件”,而不是main
方法,那么您应该使用JUnit或其他测试框架