Java: string

Source: Internet
Author: User

1. How do I compare strings? with "= =" or equals ()?

Simply put, "= =" tests whether the references of two strings are the same, and equals () tests whether the values of two strings are the same. Unless you want to check whether two strings are the same object, it is best to use equals ().
If you know the string dwell mechanism is better.

2. Why is security-sensitive information char[] better than string?

Strings are immutable, which means that once the strings are created, they remain there until the garbage collector cleans them up. And for an array, you can explicitly modify its elements. This way, security-sensitive information, such as passwords, will not appear anywhere else in the system.

3. Can we use string in the switch statement?

For Java7 the answer is yes. Starting with JDK7, we can use string as the condition of the switch statement. We cannot use string as a condition of a switch statement before JDK6.

123456789 // java 7 only!switch(str.toLowerCase()) {      case"a":           value = 1;           break;      case"b":           value = 2;           break;}

4. How do I convert a string to an integer?
1 intn = Integer.parseInt("10");

Very simple, too frequent to use and sometimes overlooked.

5. How do I break down a string with a white-space character?

We can simply use regular expressions to do the decomposition. "\s" stands for whitespace characters, such as "," \ T "," \ r "," \ n ".

1 String[] strArray = aString.split("\\s+");

What does the 6.substring () method really do?

In JDK6, the substring () method provides a window that represents a character array of existing strings, but does not create a new string. To create a new string that is represented by a new character array, you can add an empty string as follows:

1 str.substring(m, n) + ""

This creates an entirely new array of characters representing the new string. The method above sometimes makes the code faster because the garbage collector reclaims large unused strings, leaving only one substring.
In Oracle JDK 7, SUBSTRING () creates a new character array without an existing array. The substring () Method in JDK 6 and JDK 7 shows the difference between JDK 6 and JDK 7 substring ().

7.String vs StringBuilder vs StringBuffer

String vs Stringbuilder:stringbuilder is mutable, which means that a person can change its value after it is created.
StringBuilder vs Stringbuffer:stringbuffer is synchronous, which means it is thread-safe, but slower than StringBuilder.

8. How do I repeat a string?

In Python, we can repeat a string by multiplying it by a number. In Java, we can repeat strings through the repeat () method of the StringUtils class in the Apache Commons lang package.

123 String str = "abcd";String repeated = StringUtils.repeat(str,3);//abcdabcdabcd

9. How do I convert a string to a date?
1234 String str = "Sep 17, 2013";Date date = newSimpleDateFormat("MMMM d, yy", Locale.ENGLISH).parse(str);System.out.println(date);//Tue Sep 17 00:00:00 EDT 2013

10. How do I count the number of occurrences of a character in a string?

Use the StringUtils class in the Apache Commons lang package.

12 intn = StringUtils.countMatches("11112222""1");System.out.println(n);

Java: string

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.