文件名称:gridsearch4j:使用反射彻底设置目标对象上所有字段值组合的实用程序
文件大小:10KB
文件格式:ZIP
更新时间:2024-07-11 03:39:34
Java
网格搜索4j
使用反射彻底设置目标对象上所有字段值组合的实用程序
例如,如果您有一个包含要搜索的字段的对象
class ToSearch {
String a;
int b;
double c;
}
地图用于指定要搜索的参数网格:
// Construct an instance of the object that will be searched
ToSearch obj = new ToSearch();
// Define the grid points to be searched over
Map
【文件预览】:
gridsearch4j-master
----README.md(1KB)
----pom.xml(802B)
----LICENSE(11KB)
----src()
--------test()
--------main()