static int test2(int testval) {
if(testval > target)
return -1;
if(testval < target)
return +1;
return 0; /中的 return -1 和return+1是什么意思啊