java 传参数 数组_Java参数传递 数组的使用

数组在函数定义中的使用格式(int[]  OrphanCount)

调用的时候一般使用: int[] OrphanCountBefore = new int[2];

theCalledMethod(OrphanCountBefore);

这是公共函数

public void GetOrphanCount(int[]  OrphanCount) {

int blockStoreOrphanCount = 0;

int buildEnvOrphanCount = 0;

String prePostText = "after";

try {

blockStoreOrphanCount = BlockStoreOrphanPurgeCache.getOrphanCount(true, ORPHAN_FILE, TestConstants.VERBOSE_ORPHAN_LOGGING);

OrphanCount[0] = blockStoreOrphanCount;

System.out.println("***** Found " + blockStoreOrphanCount + " blockstore orphans ");

buildEnvOrphanCount = BuildEnvironmentOrphanPurge.getOrphanCount(ORPHAN_FILE, TestConstants.VERBOSE_ORPHAN_LOGGING);

OrphanCount[1] = buildEnvOrphanCount;

System.out.println("***** Found " + buildEnvOrphanCount + " buildenv orphans ");

} catch (Exception e) { System.out.println("Still end up getting an exception up here"); e.printStackTrace();

}

}

这是调用者的代码

public void testWhileCondEvalsTrue() throws Exception {

int blockStoreOrphanCountBefore = 0;

int buildEnvOrphanCountBefore = 0;

int[] OrphanCountBefore = new int[2];

GetOrphanCount(OrphanCountBefore);

System.out.println("--------- Starting orphan data collection before running test case:  ---------"+OrphanCountBefore[0]);

CreateWhileStep();

//int OrphanCountAfter[2];

int[]  OrphanCountAfter = new int[2];

int blockStoreOrphanCountAfter = 0;

int buildEnvOrphanCountAfter = 0;

GetOrphanCount(OrphanCountAfter);

System.out.println("--------- Starting orphan data collection after running test case:  ---------"+OrphanCountAfter[0]);

Assert.assertEquals(OrphanCountBefore[0],

OrphanCountAfter[0],"the blockStoreOrphanCount should be equal before and after run the test case");

}

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值