來源:https://www.programcreek.com/2013/09/top-10-faqs-of-java-strings/java
The following are top 10 frequently asked questions about Java Strings.apache
1. How to compare strings? Use "==" or use equals()?微信
In brief, "==" tests if references are equal and equals() tests if values are equal. Unless you want to check if two strings are the same object, you should always use equals().
It would be better if you know the concept of string interning.app
2. Why is char[] preferred over String for security sensitive information?less
Strings are immutable, which means once they are created, they will stay unchanged until Garbage Collector kicks in. With an array, you can explicitly change its elements. In this way, security sensitive information(e.g. password) will not be present anywhere in the system.ui
3. Can we use string for switch statement?this
Yes to version 7. From JDK 7, we can use string as switch condition. Before version 6, we can not use string as switch condition.spa
// java 7 only! |
4. How to convert string to int?.net
int n = Integer.parseInt("10"); |
Simple, but so frequently used and sometimes ignored.3d
5. How to split a string with white space characters?
String[] strArray = aString.split("\\s+"); |
6. What substring() method really does?
In JDK 6, the substring() method gives a window to an array of chars which represents the existing String, but do not create a new one. To create a new string represented by a new char array, you can do add an empty string like the following:
str.substring(m, n) + "" |
This will create a new char array that represents the new string. The above approach sometimes can make your code faster, because Garbage Collector can collect the unused large string and keep only the sub string.
In Oracle JDK 7, substring() creates a new char array, not uses the existing one. Check out the diagram for showing substring() difference between JDK 6 and JDK 7.
7. String vs StringBuilder vs StringBuffer
String vs StringBuilder: StringBuilder is mutable, which means you can modify it after its creation.
StringBuilder vs StringBuffer: StringBuffer is synchronized, which means it is thread-safe but slower than StringBuilder.
8. How to repeat a string?
In Python, we can just multiply a number to repeat a string. In Java, we can use the repeat() method of StringUtils from Apache Commons Lang package.
String str = "abcd"; |
9. How to convert string to date?
String str = "Sep 17, 2013"; |
10. How to count # of occurrences of a character in a string?
Use StringUtils from apache commons lang.
int n = StringUtils.countMatches("11112222", "1"); |
本文分享自微信公衆號 - 彤哥讀源碼(gh_63d1b83b9e01)。
若有侵權,請聯繫 support@oschina.cn 刪除。
本文參與「OSC源創計劃」,歡迎正在閱讀的你也加入,一塊兒分享。