仪器社区

什么是测试类?

丿90後灬丫头 2017-10-01
JAVA中的测试类是用来干什么的?还有应该怎样编写?. 用下面的代码做下例子说明下怎样写测试类 3Q public class MyMath { public static int Max(int a,int b,int c) { return (((a>b)?a:b)>c)?((a>b)?a:b):c; } public static ... JAVA中的测试类是用来干什么的?还有应该怎样编写?. 用下面的代码做下例子说明下怎样写测试类 3Q public class MyMath { public static int Max(int a,int b,int c) { return (((a>b)?a:b)>c)?((a>b)?a:b):c; } public static void main (String[] args) { System.out.print(MyMath.Max(3,4,5)); } }
评论
全部评论
皮皮虾有点辣
测试类 顾名思义就是用来测试的类
public class MyMath {
public static int Max(int a,int b,int c) {
return (((a>b)?a:b)>c)?((a>b)?a:b):c;
}
}

*****测试类******
public class TestMyMath{
public static void main (String[] args) {
MyMath mm=new MyMath();
System.out.print(mm.Max(3,4,5));
}
}
10 0 2017-10-02 0条评论 回复
您可能感兴趣的社区主题
加载中...
发布 评论