粗略写了下,满足题目要求。楼主运行看看吧。
class Staff{
private String name ;
private int id ;
public Staff(String name,int id){
thisname = name ;
thisid =id;
}
public void getInfo(){
Systemoutprintln("name: " + name );
Systemoutprintln("id: " + id);
}
}
public class Employee{
public static void main(String[] args){
Staff s1 = new Staff("王五",101);
Staff s2 = new Staff("张三",201);
s1getInfo();
s2getInfo();
}
}
检测一个JAVA程序的运行时间方法: long startTime = SystemcurrentTimeMillis();//获取当前时间//doSomeThing(); //要运行的java程序long endTime = SystemcurrentTimeMillis();Systemoutprintln("程序运行时间:"+(endTime-startTime)+"ms");
public static boolean ispAlindrome(String str){
//判断字符串是否为空(为空,按非回文处理)
if(str==null||""equalsIgnoreCase(str))return false;
//记录字符串的长度
int strLen=strlength();
//判断对应位置的值是否相等
for(int i=0,len=(strLen+1)/2;i<len;i++){
/
eg:上海自来水 来 自 海 上
下标 0,1,2,3,4,9-3-1,9-2-1,9-1-1,9-0-1
/
if(strcharAt(i)!=strcharAt(strLen-i-1)){
return false;
}
}
return true;
}
以上就是关于用Java程序编写测试程序EmployeeTest全部的内容,包括:用Java程序编写测试程序EmployeeTest、如何准确的测试一段java代码的执行时间、(1/2)java程序设计题:编写并测试方法 static boolean ispAlindrome(String str) 方法的功能等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)