Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
161 views
in Technique[技术] by (71.8m points)

java - What is the purpose of concatenating a string and an integer?

This method returns true if the number passed in contains a 1.

public boolean hasOne(int n) {
  return (n + "").contains("1");
}

What is the purpose of the + "" part? How does that make n a string? (.contains only works with Strings as far as I understand).

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

An int is a primitive. Adding a primitive to a string will perform an implicit conversion of that primitive to a String and add the two strings together. In this case, the int is converted and "" ( empty String ) is added,

That can be rewritten as:

return Integer.toString(n).contains("1");

or

return String.valueOf(n).contains("1");

or

return String.format("%d", n).contains("1");

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...