String inversion and String Inversion

Source: Internet
Author: User

String inversion and String Inversion

This is a question in a java interview question on the Internet:

The problem is: how to reverse a String.

String str = "1234567"; int length = str. length (); int beginIndex = length-1; char [] sourceCharArray = str. toCharArray (); char [] discCharArray = new char [length]; int j = 0; for (int I = beginIndex; I> = 0; I --) {discCharArray [j] = sourceCharArray [I]; j ++;} String newStr = String. valueOf (discCharArray );

The resulting operation is the operation of a character in a string. You can directly convert it to char [] first. Then, in the char operation on a pointer, reassemble it into a String through String. valueOf (char. Higher efficiency.

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.