multiple ways int and String convert to each other (turn)

Source: Internet
Author: User
Tags integer string
Convert 5.1 How do I convert a string string to an integer int?

A. There are two methods:

1). int i = Integer.parseint ([String]); Or
i = Integer.parseint ([string],[int radix]);

2). int i = integer.valueof (my_str). Intvalue ();

Note: The string turns into a Double, Float, Long with a similar method.


5.2 How do I convert an integer int to string string?


A. There are three approaches:

1.) String s = string.valueof (i);

2.) String s = integer.tostring (i);

3.) String s = "" + I;

Note: Double, Float, and Long turn into strings are very similar.





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.