Syntax of a return statement in Java -


this in 1 of practice exams.

return search(p,key,0,p.length-1) !=null; 

how if statements?

if (search(p,key,0,p.length-1) !=null) {      return true;  }  return false; 

Comments

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

aspxgridview - Devexpress grid - header filter does not work if column is initially hidden -

c# - How to execute a particular part of code asynchronously in a class -