真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

java測(cè)試程序時(shí)間代碼 java代碼測(cè)試工具

求JAVA大神解答:1.編寫(xiě)程序,測(cè)試1~50的階乘所耗費(fèi)的毫秒級(jí)時(shí)間。

題目一:

公司主營(yíng)業(yè)務(wù):網(wǎng)站建設(shè)、成都網(wǎng)站設(shè)計(jì)、移動(dòng)網(wǎng)站開(kāi)發(fā)等業(yè)務(wù)。幫助企業(yè)客戶(hù)真正實(shí)現(xiàn)互聯(lián)網(wǎng)宣傳,提高企業(yè)的競(jìng)爭(zhēng)能力。創(chuàng)新互聯(lián)公司是一支青春激揚(yáng)、勤奮敬業(yè)、活力青春激揚(yáng)、勤奮敬業(yè)、活力澎湃、和諧高效的團(tuán)隊(duì)。公司秉承以“開(kāi)放、自由、嚴(yán)謹(jǐn)、自律”為核心的企業(yè)文化,感謝他們對(duì)我們的高要求,感謝他們從不同領(lǐng)域給我們帶來(lái)的挑戰(zhàn),讓我們激情的團(tuán)隊(duì)有機(jī)會(huì)用頭腦與智慧不斷的給客戶(hù)帶來(lái)驚喜。創(chuàng)新互聯(lián)公司推出桓臺(tái)免費(fèi)做網(wǎng)站回饋大家。

public?class?Jiecheng?{

public?static?void?main(String[]?args)?{

Long?startTime?=?System.currentTimeMillis();

long?result?=?new?Jiecheng().fuc(50);

Long?endTime?=?System.currentTimeMillis();

System.out.println("計(jì)算結(jié)果為:"?+?result?+?"所耗時(shí)間:"?+?(endTime?-?startTime)?+?"毫秒");

}

public?long?fuc(int?param)?{

if?(param?==?1)

return?1;

else

return?汪裂彎param?*?fuc(param?-?1);

}

}

題目二:

1,先從數(shù)據(jù)庫(kù)里查出這些記錄

2,如你所說(shuō),遍歷記錄時(shí)把“設(shè)備編碼”和“設(shè)備名困悶稱(chēng)”拼接在一起組成字符串

3,遍歷這些記錄時(shí)往Vector這個(gè)對(duì)象中添加拼接好的字符串,這樣這些記錄就按你要要格式存到了Vertor這個(gè)集合中

4,因?yàn)槟闶怯肰etor存的,所以便利vetor時(shí),你只有這么取

如:

for(int?i?=?0;i??vetor.size();i++){?

if((String)v.get(i).contains("0010")){

String?deviceName?=?(String)v.get(i).split("::")[1];?//?得到設(shè)備名稱(chēng)

}?

}

題目三:

public?class?Jiecheng?{

public?static?void?main(String[]?args)?{

源冊(cè)?????String?str?=?"打印機(jī)*鐘表//自行車(chē)**雨傘%%收音機(jī)??電腦";

fuc(str);

}

public?static?void?fuc(String?param)?{

param?=?param.replaceAll("\\*",?"?").replaceAll("/",?"?").replaceAll("\\%",?"?").replaceAll("\\?",?"?");

for(String?s?:?param.split("?")){

System.out.println(s);

}

}

}

代碼寫(xiě)的好笨? 呵呵

如何準(zhǔn)確的測(cè)試一段java代碼的執(zhí)行時(shí)間

檢測(cè)一個(gè)JAVA程序的運(yùn)行時(shí)間方法:卜液 long startTime = System.currentTimeMillis();//獲取當(dāng)前時(shí)間/局臘/doSomeThing(); //要運(yùn)行的java程序long endTime = System.currentTimeMillis();System.out.println("程序運(yùn)行時(shí)桐弊滑間:"+(endTime-startTime)+"ms");

(求助)JAVA編寫(xiě)類(lèi)與類(lèi)的測(cè)試程序

--------------------------DateUtil類(lèi)

/**

* @author 王炳滑蔽搜焱

* 創(chuàng)建日期:2007-5-21

* 項(xiàng)目名稱(chēng):te

* 文件名稱(chēng):DateUtil

*/

package test0521;

/**

* @author Administrator

*

*/

public class DateUtil {

public int year;// 用于表示年份

public int month;// 用于表示月份

public int day;// 用于表示天數(shù)

private boolean isLeapYear = false;// 用于表示是否為閏年.初始值信歷為false

DateUtil() {

}

DateUtil(int year, int month) {// 用于初始化year變量和month變量

this.year = year;

this.month = month;

}

public boolean isLeapYear() {// 用于判斷年份是否為閏年

this.isLeapYear = (this.year % 4 == 0 this.year % 100 != 0)

|| (this.year % 400 == 0);//閏年條件

return this.isLeapYear;

}

public int getMonthDays() {// 用于計(jì)算并取得該月的天數(shù)

int[] bigMonth = { 1, 3, 5, 7, 8, 10, 12 };//31天的月份

for (int i = 0; i bigMonth.length; i++) {

if (this.month == bigMonth[i]) {

this.day = 31;

return this.day;

}

}

if (this.month == 2 this.isLeapYear()) {//閏年2月

this.day = 29;

return this.day;

}

if (this.month == 2) {//平年2月

this.day = 28;

return this.day;

}

this.day = 30;//除去31天的月份和2月,其他月份都為30天

return this.day;

}

}

---------------Test類(lèi)

/**

* @author 王炳焱

* 創(chuàng)建日期:2007-5-21

* 項(xiàng)目名稱(chēng):te

* 文件名稱(chēng):Test

*/

package test0521;

/**

* @author Administrator

*

*/

public class Test {

/**

* @param args

*/

public static void main(String[] args) {

// TODO 自動(dòng)生成方法存根

DateUtil dateUtil = new DateUtil(2008, 1);//輸并源入年份與月份

String str = "平年";

if (dateUtil.isLeapYear()) {//根據(jù)判斷閏年返回布爾值生成對(duì)應(yīng)字符串

str = "閏年";

}

System.out.println(dateUtil.year + "年為"+str);

System.out.println(dateUtil.month + "月有" + dateUtil.getMonthDays()+ "天");

}

}

JAVA程序,定義一個(gè)日期類(lèi)的測(cè)試類(lèi)

public class Date {

private int year;

private int month;

private int day;

public int getYear() {

return year;

}

public void setYear(int year) {

this.year = year;

}

public int getMonth() {

return month;

}

public void setMonth(int month) {

this.month = month;

}

public int getDay() {

return day;

}

public void setDay(int day) {

this.day = day;

}

Date(int month,int day){

this.month=month;

this.day=day;

}

Date(int year,int month,int day){

this.year=year;

this.month=month;

this.day=day;

}

public boolean isLeap(int year){

if((year%4==0year%100!=0)||(year%400==0)){

return true;

}else {

return false;

}

}

}


網(wǎng)站欄目:java測(cè)試程序時(shí)間代碼 java代碼測(cè)試工具
文章鏈接:http://weahome.cn/article/ddpdghi.html

其他資訊

在線咨詢(xún)

微信咨詢(xún)

電話咨詢(xún)

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部