gpt4 book ai didi

java - 使用反射来计算方法。

转载 作者:搜寻专家 更新时间:2023-11-01 01:21:58 24 4
gpt4 key购买 nike

我要写一个函数

public static int[] countGettersandSetters (String classname)

统计 get 和 set 方法的数量,并返回一个数组,其中索引 0 是集合,索引 1 是获取。

谁能给我一个解决这个问题的高级方法?

最佳答案

public static int[] countGettersandSetters (String className)
int[] count = new int[2];
Method[] methods = Class.forName(className).getDeclaredMethods();
for (Method method : methods) {
if (method.getName().startsWith("set")) {
count[0]++;
} else if (method.getName().startsWith("get") ||
method.getName().startsWith("is")) { // to incl. boolean properties
count[1]++;
}
}
return count;
}

有关反射 API 的简明教程,请查看 here .

关于java - 使用反射来计算方法。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18050080/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com