return new int[]{-1, -1};

return new int[0];

return new int[]{-1, -1};

1.public int[] twoSum(int[] nums, int target),方法定义了返回int
2.return new int[0];中new int[0]代表着创建了一个长度为0的int数组,
这里与int[] arr = new int[0]进行对比可能更容易理解,后者是创建了数组并将其引用赋值给变量arr,
return new int[0];而这里并没有赋值操作,而是直接返回了这个数组
3.这段代码中如果
if(target == (nums[i] + nums[j])){
return new int[]{i,j};
}
这段代码判断为true则进入if语句的执行代码,return new int[]{i,j};,也就是找到了目标值,
结束方法返回目标值为数组的类型,若是if语句判断为false则不进入,直到所有循环结束都没有找到就会顺序执行,
执行return new int[0],返回一个长度为0的数组,长度为0的数组也是个数组,存在引用

你可能感兴趣的:(leetcode,leetcode,排序算法,算法)