shouldn´t one pass an object to equal?
String hej = pets.getBark();
if(hej.equals("woff"))
why are you able to pass a string woff?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Under the hood, a string literal ( text inside quotes ) automatically is replaced by String instance. ( a string literal is shorthand for
new String)That is why this code works:
String hello = "hello";So,
is identical to the code you provided.