我正在构建Java方法的代码汇总算法,为此我试图在json文件中构建数据集以进行训练,如下所示
java代码
public void sum(int a,int b){
/*printing the sum of two number*/
System.out.println(a+b);
}
JSON文件
{"code":"public void sum(int a,int b){System.out.println(a+b);}","comment":"printing the sum of two number"}